Metadata-Version: 2.1
Name: nero-fastapi-logger-lib
Version: 0.1.4
Summary: A logging library for FastAPI with request_id tracking
Home-page: https://github.com/neroswords/nero-fastapi-logger-lib.git
Author: Tanathap Roongpipat
Author-email: tanathep.min@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# FastAPI Logger Library

This is a reusable logging library for FastAPI applications with request_id tracking.

## Installation
```bash
pip install nero-fastapi-logger-lib
```

## Usage
```python
from fastapi_logger.logger import logger

logger.info("Hello from FastAPI!")
```

```python with sqlalchemy
from fastapi_logger.logger import logger, setup_sqlalchemy_logging
setup_sqlalchemy_logging()
logger.info("Hello from FastAPI!")
```

## Features
- Request ID tracking for API & Cron jobs
- JSON & color log formatting
- Compatible with FastAPI middleware


