solid-python
solid-python copied to clipboard
Python client for Solid
================== Solidpy
Solidpy is the python Client for Solid
=============== Installation
- Install the package with
pip install solidpyor alternatively you can
download the tarball and runpython setup.py solidpy
================ Django
To capture and log exceptions in settings.py add the following:
::
SOLID_CONFIG = {
'url': 'http://solid_instance:port',
'secret': 'secret_key'
}
::
MIDDLEWARE_CLASSES = (
.....
'solidpy.handlers.django.DjangoExceptionMiddleware'
)
=============== Requirements
Python 2.6+
requests