Metadata-Version: 1.1
Name: logplex
Version: 0.0.1
Summary: A Logplex client for Python.
Home-page: https://github.com/kennethreitz/python-logplex
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: BSD
Description: 
        Python-Logplex
        ==============
        
        Python-Logplex is a fast & efficient client for sending log messages to
        Heroku's `Logplex project <http://github.com/heroku/logplex>`_. It uses keep-alive
        connections to enable high-throughput with little overhead.
        
        Usage
        -----
        
        First, install the library::
        
            $ pip install logplex
        
        Then, send some sample data::
        
            from logplex import Logplex
        
            logplex = Logplex(token='SECRETSAUCE')
        
            logplex.puts('\o/')
        
        
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
