Metadata-Version: 2.1
Name: python-prakashravip1
Version: 1.0.1
Summary: Common Python Utility and Client Tools
Home-page: https://github.com/ravip18596/ravi-python-clients
Author: Ravi Prakash
Author-email: ravip18596@github.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ravip18596/ravi-python-clients/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# ravi-python-clients

Assortment of python client for personal or business use

## Current Facilities

1) Logger with unique identifier per session

## Windows Installation

```commandline
py -m venv venv
source venv\Scripts\activate
py -m pip install python-prakashravip1
```

## Linux/ Mac Installation

```bash
python -m venv venv
source venv/bin/activate
pip install python-prakashravip1
```

## Example

```python
from utils.logger import logger

logger.info("test info log")
```

```python
from utils.trace_logger import get_trace_logger

test_trace_id = "1234"
logger = get_trace_logger(test_trace_id)
logger.info(f"test info log with trace_id. {test_trace_id}")        
```

