The last few weeks I have been working on a python applets manager for OpenMoko cell phone.
The idea is to be able to very easily develop applications in python. Each application can define a set of services and request for a given services. So if for example I write a text editor, other applications that need a text text editor will be able to use it, even if they don't know about this particular text editor.
The code can be downloaded from the subversion server :
svn checkout svn://svn.projects.openmoko.org/svnroot/tichy
It can work directly on a desktop computer, or on the open moko (See the README file for more informations)
It uses Mickey freesmartphone Framework
Here are some screen shots :
2 comments:
Can not seem to compile this:
I get
Error converting Pyrex file to C:
------------------------------------------------------------
...
cdef class Object:
cdef void _emit(self, char* event) except *
cdef void _emit_1(self, char* event, v) except *
cdef dict __listeners
^
------------------------------------------------------------
Gentoo (latest of course)
python 2.5.2
pyrex 0.9.8.4
cython 0.9.6.12
I saw the same problem before, has been resolved by using cython 0.9.6.14
Post a Comment