iam-mhaseeb / pyspecty

A happy light weight library to search python errors on stackoverflow automatically.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PySpecty

Most of developers spend maximum time on stackoverflow searching for their python errors, this library automatically search for solution on stackoverflow as soon as you get an python error and save a lot of time from a loop of reading error, searching it on stackoverflow.

Installation

Installation is simplest with pip:

pip install pyspecty

Installation notes

pyspecty depends on singleton-decorator only.

pyspecty automatically search python errors on stackoverflow. See Usage below.

Usage

Check out A simple usage example for a short intro. A sample usage is:

from pyspecty import PySpecty
PySpecty() # that's it!

From example:

from pyspecty import PySpecty

PySpecty() # That's it!! Do it somewhere in your file

# The actual code!!

print(2/0)

# Code end here

output is:

division_by_zero_error

TODO

  1. Tests need to be written.
  2. A dumb page also open that need to be fixed.

Contributing

Feel free to submit pull requests to me.

Authors

Licensing

The pycloudy library is MIT Licenced. Feel free to use commercially of personally.

About

A happy light weight library to search python errors on stackoverflow automatically.

License:MIT License


Languages

Language:Python 100.0%