circuits 1.1.1
Event framework with a Component architecture
A Lightweight, Event driven Framework with a strong Component Architecture.
Components communicate with one another by propagating Events on Channels throughout the System. Each Component has a set of Event Handlers that can listen for or filter Events on one or more Channels. Components react to Events and in turn expose further Events into the System. Each Component is capable of managing it's own Events as well as those of other Components. Complex directed graph structures can be created with Component Registrations, this gives a level of hierarchy and separation of concern.
- Example:
>>> from time import sleep >>> from circuits import Event, Component >>> >>> class App(Component): ... def hello(self): ... print "Hello World!" >>> app = App() >>> app.start() >>> app.push(Event(), "hello") >>> sleep(1) Hello World!
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| circuits-1.1.1-py2.5.egg (md5) | Python Egg | 2.5 | 2009-03-23 22:30:32.018668 | 216KB | 156 |
| circuits-1.1.1.tar.gz (md5) | Source | 2009-03-23 22:29:44.482136 | 155KB | 128 | |
| circuits-1.1.1-py2.6.egg (md5) | Python Egg | 2.6 | 2009-03-23 22:29:57.652225 | 215KB | 177 |
- Author: James Mills <James Mills, prologic at shortcircuit dot net dot au>
- Home Page: http://trac.shortcircuit.net.au/circuits/
- Download URL: http://trac.softcircuit.com.au/circuits/downloads/circuits-1.1.1.tar.gz
- Keywords: circuits Event Library Framework Component Architecture
- License: MIT
- Platform: POSIX
-
Categories
- Development Status :: 4 - Beta
- Environment :: Console
- Environment :: No Input/Output (Daemon)
- Environment :: Other Environment
- Environment :: Plugins
- Environment :: Web Environment
- Intended Audience :: Developers
- Intended Audience :: Information Technology
- Intended Audience :: Science/Research
- Intended Audience :: System Administrators
- Intended Audience :: Telecommunications Industry
- License :: OSI Approved
- License :: OSI Approved :: MIT License
- Natural Language :: English
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.0
- Topic :: Adaptive Technologies
- Topic :: Communications :: Chat
- Topic :: Communications :: Chat :: Internet Relay Chat
- Topic :: Communications :: Email
- Topic :: Communications :: Email :: Mail Transport Agents
- Topic :: Database
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Internet :: WWW/HTTP :: HTTP Servers
- Topic :: Internet :: WWW/HTTP :: WSGI
- Topic :: Internet :: WWW/HTTP :: WSGI :: Application
- Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
- Topic :: Internet :: WWW/HTTP :: WSGI :: Server
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Application Frameworks
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: System :: Clustering
- Topic :: System :: Distributed Computing
- Package Index Owner: prologic
- DOAP record: circuits-1.1.1.xml
Log in to rate this package.
Package rating (1 vote):
2.0
- 2 points: 1 vote
Ratings range from 0 to 5 (best).
Package Comments:
- (benjaminws, 2009-10-26,
points)
