Metadata-Version: 2.1
Name: eventlib
Version: 0.1.5
Summary: Library to make it easy to track events in python/django apps
Home-page: https://github.com/Yipit/eventlib
Author: Lincoln de Sousa
Author-email: lincoln@yipit.com
License-File: COPYING
Requires-Dist: celery>=3.0.0
Requires-Dist: logan==0.5.0
Requires-Dist: redis>=2.7.1
Requires-Dist: ejson
Requires-Dist: Django

# Eventlib

[![Build Status](https://secure.travis-ci.org/Yipit/eventlib.png)](http://travis-ci.org/Yipit/eventlib)

Long story short, eventlib is an asynchronous event tracking app for
Django. This library was built upon the following values:

 * It must be deadly simple to log an event;
 * It must be possible to track each event in different ways;
 * Each different "event handler" must be completely separate and fail
   gracefully;
 * The event system must be asynchronous, so let's use celery;
 * The library must be extensible;
 * 100% of test coverage is enough.

To learn how it works, please refer to our tutorial:

 1. [First steps to log an event](docs/p1-tutorial.md)
 2. [Declaring an event](docs/p2-declaring-an-event.md)
 3. [Asynchronous logging](docs/p3-asynchronous-logging.md)
