是否有适用于 Python 3.x 的 Google 数据 API (gdata)?
我想使用 Google Data API,但我使用的是 Python 3。我没有看到他们提到了有关 Python 3 的任何内容。是否可以为 Python 3 安装 gdata?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
还没有,但考虑到它都是基于交换 xml 格式的消息,您可以在 Python 3 的较低级别轻松使用它。
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.
gdata 客户端只是所使用的基本 XML/http 协议的包装器。您可以改用基本协议。
不过,将 gdata 移植到 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.
通过另一个问题,有人为电子表格 API 创建了一个可与 Python 3 配合使用的 python 模块。
Via another question, someone has created a python module for the spreadsheets API that does work with Python 3.
现在您只需
pip3 install google-api-python-client
< /a> 你就会得到它。 ;)Now you can just
pip3 install google-api-python-client
and you'll have it. ;)Python 3.x 版本:
pip install -e git+https://github.com/dvska/gdata-python3#egg=gdata
Python 3.x version:
pip install -e git+https://github.com/dvska/gdata-python3#egg=gdata