/circuits/__init__.py

https://bitbucket.org/prologic/circuits/ · 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. """Lightweight Event driven and Asynchronous Application Framework
  5. circuits is a **Lightweight** **Event** driven and **Asynchronous**
  6. **Application Framework** for the `Python Programming Language`_
  7. with a strong **Component** Architecture.
  8. :copyright: CopyRight (C) 2004-2013 by James Mills
  9. :license: MIT (See: LICENSE)
  10. .. _Python Programming Language: http://www.python.org/
  11. """
  12. __author__ = "James Mills"
  13. __date__ = "24th February 2013"
  14. from .version import version as __version__
  15. from .core import Event
  16. from .core import task, Worker
  17. from .core import handler, reprhandler, BaseComponent, Component
  18. from .core import Debugger, Bridge, Loader, Manager, Timer, TimeoutError
  19. # flake8: noqa