views:

76

answers:

1

I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc. Is there any way to install Google Data APIs Python Client Library on Symbian ?

+1  A: 

Google Data Api is just a bunch of interpreted Python code. It should run in any Python 2.2 interpreter after you download it from the project page. It has a nice tutorial.

Maybe you want to know how to install downloaded Python packages.

neves
I'm not sure it's that simple on a Symbian device. Have you actually tried it? There's no command line (so how would you call `python setup.py`?). I guess you can just put the files somewhere and edit `sys.path`, but these environments are pretty limited and sandboxed. In other words, the Symbian part of the question is the problem, not the Python part.
UncleZeiv