Hi Jorge, On Thu, May 13, 2010 at 2:52 PM, Jorge Sierra <[email protected]> wrote: > I was doing some research to run storm on android. > I removed support for mysql, postgres, all ok. > Now I found cextensions.c, compiled to cextensions.pyd. > > I have to take a look at that file, but there is any way I can convert > this file to a .py file > migrate this c code to python code. > > If I have 100% pure python storm module, it will be great, so I can > start experimenting with > android-python-sqlite3.
Nice! The C extensions are in place purely for performance reasons. Storm runs just fine as pure Python. The extensions are imported by default, unless the STORM_CEXTENSIONS environment variable is explicitly set to '0'. You can see the behaviour in place by looking at the storm/__init__.py file. Let us know how it works out for you! Thanks, J. -- storm mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/storm
