Metadata-Version: 2.0
Name: structlog
Version: 0.3.0
Summary: Painless structural logging.
Home-page: http://github.com/hynek/structlog/
Author: Hynek Schlawack
Author-email: hs@ox.cx
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules

structlog: Structured Python Logging
====================================

.. image:: https://travis-ci.org/hynek/structlog.png?branch=master
   :target: https://travis-ci.org/hynek/structlog

.. image:: https://coveralls.io/repos/hynek/structlog/badge.png?branch=master
    :target: https://coveralls.io/r/hynek/structlog?branch=master




structlog makes structured logging in Python easy by *augmenting* your *existing* logger.
It allows you to split your log entries up into key/value pairs and build them incrementally without annoying boilerplate code.

It's licensed under `Apache License, version 2 <http://choosealicense.com/licenses/apache/>`_, available from `PyPI <https://pypi.python.org/pypi/structlog/>`_, the source code can be found on `GitHub <https://github.com/hynek/structlog>`_, the documentation at `http://www.structlog.org/ <http://www.structlog.org>`_.

structlog targets Python 2.6, 2.7, 3.2, and 3.3 as well as PyPy with no additional dependencies for core functionality.

If you need any help, visit us on ``#structlog`` on `Freenode <http://freenode.net>`_!

.. image:: https://d2weczhvl823v0.cloudfront.net/hynek/structlog/trend.png
   :alt: Bitdeli badge
   :target: https://bitdeli.com/free


Authors
-------

structlog is written and maintained by `Hynek Schlawack <http://hynek.me/>`_.
It’s inspired by previous work done by `Jean-Paul Calderone <http://as.ynchrono.us>`_ and `David Reid <http://dreid.org>`_.

The development is kindly supported by `Variomedia AG <https://www.variomedia.de/>`_.

The following folks helped forming structlog into what it is now:

- `Alex Gaynor <https://github.com/alex>`_
- `Christopher Armstrong <https://github.com/radeex>`_
- `Daniel Lindsley <https://github.com/toastdriven>`_
- `David Reid <http://dreid.org>`_
- `Donald Stufft <https://github.com/dstufft>`_
- `Glyph <https://github.com/glyph>`_
- `Holger Krekel <https://github.com/hpk42>`_
- `Itamar Turner-Trauring <https://github.com/itamarst>`_
- `Jack Pearkes <https://github.com/pearkes>`_
- `Jean-Paul Calderone <http://as.ynchrono.us>`_
- `Lynn Root <https://github.com/econchick>`_
- `Noah Kantrowitz <https://github.com/coderanger>`_
- `Tarek Ziadé <https://github.com/tarekziade>`_
- `Thomas Heinrichsdobler <https://github.com/dertyp>`_
- `Tom Lazar <https://github.com/tomster>`_

Some of them disapprove of the addition of thread local context data. :)


Third Party Code
^^^^^^^^^^^^^^^^

The compatibility code that makes this software run on both Python 2 and 3 is heavily inspired and partly copy and pasted from the `MIT <http://choosealicense.com/licenses/mit/>`_-licensed `six <https://bitbucket.org/gutworth/six/>`_ by Benjamin Peterson.
The only reason why it’s not used as a dependency is to avoid any runtime dependency in the first place.

The Sphinx (documentation) theme is an adapted version of the `Write The Docs`_ theme which in turn is an adapted version of the requests_ docs theme_ by `Kenneth Reitz`_ which in turn is an adapted version of the Flask_ docs theme by `Armin Ronacher`_.


.. _`Write The Docs`: http://write-the-docs.readthedocs.org/
.. _requests: http://www.python-requests.org/
.. _theme: https://github.com/kennethreitz/requests/tree/master/docs/_themes
.. _`Kenneth Reitz`: https://github.com/kennethreitz/
.. _Flask: https://github.com/mitsuhiko/flask
.. _`Armin Ronacher`: https://github.com/mitsuhiko/


