Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Google Data API (gdata) for Python 3.x?

I would like to use Google Data API but I'm using Python 3. I didn't see that they mention anything about Python 3. Is it possible to install gdata for Python 3?

like image 937
snakile Avatar asked Feb 03 '11 12:02

snakile


2 Answers

Not yet, but given that it's all based around exchanging xml-formatted messages, you can easily use it at this lower level from Python 3.

like image 131
UncleZeiv Avatar answered Oct 21 '22 07:10

UncleZeiv


The gdata client is just a wrapper around the basic XML/http protocol that is used. You can use the basic protocol instead.

But it's probably easier to port gdata to Python 3, though. Contact the authors.

like image 31
Lennart Regebro Avatar answered Oct 21 '22 09:10

Lennart Regebro