Metadata-Version: 2.1
Name: pysdl
Version: 1.0.4
Summary: A python library that helps Stackdriver consume python logs appropriately built on madzak/python-json-logger
Home-page: UNKNOWN
Author: NewtonX
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.4
Description-Content-Type: text/markdown

# pysdl
Python Stackdriver Logger - A python library that helps Stackdriver consume python logs appropriately

## Installing pysdl
```bash
pip install pysdl 
```

## Implementing this in your app

#### In Django:
 settings.py ->

 ```python
from pysdl.logger_config import logging_dict

LOGGING = logging_dict
```


#### In regular python apps:
 ```python
from logging.config import dictConfig
from pysdl.logger_config import logging_dict

dictConfig(logging_dict)
```

