Metadata-Version: 2.1
Name: flaskErrorHandler
Version: 0.3
Summary: A flask package to handle exception and notify on gmail
Home-page: https://github.com/parmeshashwath/flaskErrorHandler
Author: Parmesh Ashwath
Author-email: parmesh20120@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

This package can be used to notify the developers about the unhandled exceptions in the code.

When the user of the application faces an error, the developers will be notified and also provided with stacktrace, local variables content needed to debug the issues faster

USAGE: 

	To install: pip install flaskErrorHandler

	Import and initialize with flask app instance

	from flaskErrorHandler import SafeRun

	SafeRun(<<Flask APP Instance>>,{'from_addr':<<FROM ADDRESS>>,'to_addr':<<TO ADDRESS>>,'password':<<FROM ADDRESS GMAIL PASSWORD>>})



