Metadata-Version: 2.1
Name: know-your-exceptions
Version: 0.2
Summary: Identitfy the exact exception class
Home-page: https://github.com/singhgautam7/Python-GoldMine/tree/master/know_your_exceptions
Author: Gautam Rajeev Singh
Author-email: gautamsingh1997@gmail.com
License: MIT
Keywords: pyton print color styles
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Introduction

Exception handling is one of the most cruicial part of the coding practices. And it is always a good idea to handle the specific exception using try-except rather than just handling the *Exception* class in Python. This package can help you achieve the same.

# Steps

1. Install the package using `pip install know-your-exceptions`
2. Import the decorator in your file using `from know_your_exceptions.decorators import exc_finder`
3. Add this decorator over your function, and make sure that you function does not have any *try-except* block (so that this package can suggest you accurate exception handling method)

# Example Response

![Example response](../_assets/know_your_exceptions_example.png/)

