/circuits/__init__.py
Python | 27 lines | 7 code | 5 blank | 15 comment | 0 complexity | 198b4c30a69861b7aaa238c151de4ae7 MD5 | raw file
1# Package: circuits 2# Date: 3rd October 2008 3# Author: James Mills, prologic at shortcircuit dot net dot au 4 5"""Lightweight Event driven and Asynchronous Application Framework 6 7circuits is a **Lightweight** **Event** driven and **Asynchronous** 8**Application Framework** for the `Python Programming Language`_ 9with a strong **Component** Architecture. 10 11:copyright: CopyRight (C) 2004-2013 by James Mills 12:license: MIT (See: LICENSE) 13 14.. _Python Programming Language: http://www.python.org/ 15""" 16 17__author__ = "James Mills" 18__date__ = "24th February 2013" 19 20from .version import version as __version__ 21 22from .core import Event 23from .core import task, Worker 24from .core import handler, reprhandler, BaseComponent, Component 25from .core import Debugger, Bridge, Loader, Manager, Timer, TimeoutError 26 27# flake8: noqa