Metadata-Version: 2.1
Name: pyspecty
Version: 1.0
Summary: A happy light weight library to search python errors on stackoverflow automatically.
Home-page: https://github.com/iam-mhaseeb/pyspecty
Author: Muhammad Haseeb
Author-email: haseeb.emailbox@gmail.com
License: MIT
Keywords: python,errors,debugging
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: singleton-decorator

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

## 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](#usage) below.

## Usage

Check out [A simple usage example](Example/main.py) for a short intro. A sample usage is:

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

From [example](Example/main.py):
```python
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](Example/error.png)

## 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

* **Muhammad Haseeb** - *Initial work* - [Muhammad Haseeb](https://github.com/iam-mhaseeb)

## Licensing
The pycloudy library is [MIT Licenced](LICENSE). Feel free to use commercially of personally.


