Metadata-Version: 2.1
Name: helpstack
Version: 0.0.1
Summary: Library to reduce debugging time for developers using ipython notebooks (like jupyter notebook)
Home-page: https://github.com/nareshr8/helpstack/tree/master/
Author: Naresh Rangan
Author-email: naresh.r.8@gmail.com
License: Apache Software License 2.0
Keywords: Developer Productivity
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ghapi
Requires-Dist: ipywidgets

# HelpStack
> The Library to help developers who fight with the stack trace of errors


## Install

`pip install helpstack`

## How to use

After you install the library, we can use the decorator to simply get relevant links about the issue in jupyter notebook (or any ipython notebooks)

We do the following:
- Go through Stackoverflow and get top answered results that are relevent to this stack trace
- Get all libraries that are available in the environment and search its github issues that are relevent to its stack trace.

```python
@help_stack
def div_by_zero(a):
    return a/0

div_by_zero(12)
```

![Sample Image](tab_view.png)

## Areas of improvement / TODO list:
- Add additional Searches with results from other relevent sites
- Ease logging of github issues from the same notebook if the user feels its an issue in the library
- Improve accuracy of matches with results by using ML algorithms (have to read through couple of papers on the same)
- Performance improvement of the results as there are lots of network calls involved
- Adding compatibility to other IDEs/Platforms/ Languages


