Symbian Google Data API

I want to use the Google Data API on a Symbian device with pys60, but I could not find any document. Is there a way to install the Python client library for the Google Data API on Symbian?

+6
python google-data-api symbian pys60
source share
2 answers

According to the documentation of the Google Data Data API , even client libraries basically just send XML data via HTTP, so it should be possible (theoretically, at least) to send the same data from your own PyS60 application by grokking Python client code. If the memory is correct for me, ElementTree is included in Python 2.5 and should, by extension, be in PyS60. This is the only dependency required for the Python client library.

+1
source share

Google Data Api is just a bunch of interpreted Python code. It should run in any Python 2.2 interpreter after loading it from the page. He has a good tutorial .

You might want to learn how to install downloaded Python packages .

0
source share

All Articles