1
2
3
4 """
5 Spark
6 =====
7
8 Spark is an Application Development Framework for creating reliable
9 interactive installations. It has the following features:
10
11 - B{reliability} - based on the
12 U{Twisted<http://www.twistedmatrix.com/>} framework, it runs
13 stable and secure. And in the unlikely event that it I{does}
14 crash, it starts itself again.
15
16 - B{event-based} - Twisted is an event based system: everything is
17 executed in a single thread which never blocks on I/O.
18
19 - B{monitoring} - Monitoring your application is built in with
20 support for power connection, network connection, etc.
21
22 - B{graphics} - a graphics system based on the
23 U{clutter<http://www.clutter-project.org/>} project. Optionally
24 multi-display.
25
26 - much more!
27
28 """
29
30 __version__ = "0.6"
31