Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 there any way to install Google Data APIs Python Client Library on Symbian ?

like image 698
brsata Avatar asked May 11 '10 23:05

brsata


1 Answers

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.

like image 61
darkphoenix Avatar answered Sep 17 '22 02:09

darkphoenix