Metadata-Version: 2.1
Name: Twiggy
Version: 0.4.7
Summary: a Pythonic logger
Home-page: http://twiggy.wearpants.org
Author: Pete Fein
Author-email: pete@wearpants.org
License: BSD
Platform: UNKNOWN
Classifier: Topic :: System :: Logging
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: License :: OSI Approved :: BSD License
License-File: LICENSE

Twiggy
=================================

.. image:: https://pypip.in/version/twiggy/badge.svg?style=flat
    :target: https://pypi.python.org/pypi/twiggy/
    :alt: Latest Version
    
.. image:: https://img.shields.io/travis/wearpants/twiggy.svg
    :target: https://travis-ci.org/wearpants/twiggy

Twiggy is a Pythonic logger.

.. code-block:: pycon

    >>> from twiggy import quick_setup, log
    >>> quick_setup()
    >>> log.name('frank') \
    ...    .fields(number=42) \
    ...    .info('hello {who}, it's a {0} day',
                 'sunny',
                 who='world')
    INFO:frank:number=42:hello world, it's a sunny day

You should use Twiggy because it is awesome. For more information, read the
`documentation <http://twiggy.wearpants.org>`_ or `see this blog post
<http://blog.wearpants.org/meet-twiggy>`_.

Note that `master` is currently in flux and may be broken. Please use the
maint-0.4_ branch for stable development/forks.

.. _maint-0.4: https://github.com/wearpants/twiggy/tree/maint-0.4


