You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="A Python3 Library for Quick Debugging of Errors using StackOverflow",
20
+
long_description="""A Python Library for Quick Debugging of Errors using StackOverflow
21
+
22
+
A complete rewritten library in Python3 based on pyoverflow library which was based on Python2
23
+
24
+
## Supported Features
25
+
- Quick Search of errors on StackOverflow for Python
26
+
27
+
## Planned Features
28
+
Integration with other languages like:
29
+
- Java
30
+
- JavaScript
31
+
- C
32
+
- C++ and many more
33
+
34
+
## Installation
35
+
36
+
```sh
37
+
$ pip install pyoverflow3
38
+
```
39
+
40
+
## Getting Started
41
+
42
+
Import the package
43
+
44
+
```py
45
+
import pyoverflow3
46
+
```
47
+
Create a `.py` file and include try-except block where you may expect an error and pass the error and number of solutions into `pyoverflow3.submit_error(err_msg,no_solutions)`
48
+
49
+
Once an error gets generated, the library gets called and it instantly shows you possible solutions for your error.
50
+
51
+
## Documentation
52
+
53
+
### Available Methods
54
+
- `pyoverflow3.submit_error(err_msg,no_solution)`
55
+
56
+
Accepted arguments 2:
57
+
err_msg: pass the error message from try-except block
58
+
no_solution: pass the number of solutions you need to display
0 commit comments