Metadata-Version: 2.1
Name: pysdl
Version: 1.1.1
Summary: A python library that helps Stackdriver consume python logs appropriately built on madzak/python-json-logger
Project-URL: Homepage, https://github.com/newtonx-inc/pysdl
Project-URL: Bug Tracker, https://github.com/newtonx-inc/pysdl/issues
Author-email: NewtonX <kristoph.matthews@newtonx.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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)
```