Metadata-Version: 2.4
Name: pyerrorhelper
Version: 0.0.1
Summary: error handling library
Author-email: Shikhar Aditya <satyamshikhar@gmail.com>
License: MIT
Keywords: error-handling,middleware,python
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

## Installation and Usage

1. **Install Python**  
    Make sure you have Python installed. Download it from [python.org](https://www.python.org/downloads/).

2. **Install pyerrorhelper**  
    ```bash
    pip install pyerrorhelper
    ```

3. **How to use the library**  
    ```
    from pyerrorhelper import ErrorManager

    if __name__ == "__main__":
        error_manager = ErrorManager()
        error_manager.install()
    
    def cause_error():
        return 1 / 0  # This will raise a ZeroDivisionError
    
    cause_error()
    
    error_manager.uninstall()
    ```
