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

梦想与她 提交于 2019-12-03 01:37:06

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.

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.

Benjamin Riggs

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

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

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!