Metadata-Version: 2.0
Name: excoverflow
Version: 0.1.0
Summary: Appends google/stackoverflow search links to unhandled exceptions
Home-page: https://github.com/crflynn/excoverflow
Author: Christopher Flynn
Author-email: crf204@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython

excoverflow
===========

This package adds links to google and stackoverflow search results to the end
of uncaught exceptions in Python. It should work with either Python 2 or 3.

To install:

.. code-block:: shell

    pip install excoverflow

To use, simply import the package in any project file for which you want
internet results pages printed after the exception.

.. code-block:: python

    import excoverflow

Unhandled exception output will be appended with links to google and
stackoverflow search results for python, the exception type, and the
exception message; e.g.

.. code-block:: shell

    Traceback (most recent call last):
      File "test.py", line 5, in <module>
        val = 5 / 0
    ZeroDivisionError: division by zero

    https://www.google.com/search?q=python+ZeroDivisionError+division+by+zero
    https://stackoverflow.com/search?q=%5Bpython%5D+%22ZeroDivisionError+division+by+zero%22


Inspired by this reddit post
https://www.reddit.com/r/ProgrammerHumor/comments/7z6x65/the_button_we_all_needed/


