ErrorSearcher

ErrorSearcher help to search error on webbrowser


Keywords
python, error, ErrorSearcher, file, python3
License
MIT
Install
pip install ErrorSearcher==1.0.2

Documentation

ErrorSearcher

Search error on webbrowser

Installation

pip install ErrorSearcher

How to use

from ErrorSearcher import  detect
detect(__file__)

Just write these line on top of program file which is throwing an error and the program will search the error on your default browser

Example

This will work

from ErrorSearcher import detect
detect(__file__)

def subtract(a,b):
    return a-b

er=subtract('abx',"vas")
print(er)

This will not

def subtract(a,b):
    return a-b

er=subtract('abx',"vas")
print(er)

from ErrorSearcher import detect
detect(__file__)