snakile
snakile

Reputation: 54521

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?

Upvotes: 19

Views: 6073

Answers (5)

dvska
dvska

Reputation: 2699

Python 3.x version: pip install -e git+https://github.com/dvska/gdata-python3#egg=gdata

Upvotes: 0

Lucas Henrique
Lucas Henrique

Reputation: 133

Now you can just pip3 install google-api-python-client and you'll have it. ;)

Upvotes: 0

Benjamin Riggs
Benjamin Riggs

Reputation: 678

Via another question, someone has created a python module for the spreadsheets API that does work with Python 3.

Upvotes: 0

Lennart Regebro
Lennart Regebro

Reputation: 172239

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.

Upvotes: 1

UncleZeiv
UncleZeiv

Reputation: 18488

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.

Upvotes: 1

Related Questions