Google Data API on Symbian
I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc. Is the开发者_StackOverflowre any way to install Google Data APIs Python Client Library on Symbian ?
According to the Google Data API protocol documentation, even the client libraries are basically just sending XML data over HTTP, so it should be possible (in theory, at least) to send the same data from your own PyS60 application by grokking the code of the Python client. If memory serves me right, ElementTree is included in Python 2.5, and should by extension, be in PyS60. It's the only required dependency for the Python client library.
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.
精彩评论