Metadata-Version: 2.1
Name: pysdl
Version: 1.0.3
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

## Implementing this in your app

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

 ```python
    from src.pysdl import logging_dict
    LOGGING = logging_dict
```


#### In regular python apps:
 ```python
    from logging.config import dictConfig
    from src.pysdl import logging_dict
    dictConfig(logging_dict)
```

