We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
python-ebay 是 eBay API 的 python 包装器。它涵盖了大部分 eBay API。
PS:我写的。
python-ebay is a python wrapper for eBay APIs. It covers most of the eBay APIs.
PS: I wrote it.
我尝试了 python-ebay 但它并没有实现Finding API的每个功能(例如,没有
findCompletedItems
函数)。替代方案 ebaysdk-python 似乎更积极地维护,更灵活,并且可以完成我的所有工作需要以更简单的方式(IMO)。
例如,获取某个类别的已完成项目非常简单:
传递给执行函数的字典完全镜像 eBay Finding API 文档,所以如果你能读懂它,你基本上可以用上面三行代码做任何你需要做的事情。
I tried python-ebay but it doesn't implement every function of the Finding API (for example, there is no
findCompletedItems
function).The alternative ebaysdk-python seems to be more actively maintained, is a little more flexible and does everything I need in a more simple way (IMO).
For example, getting completed items for a category is as simple as:
The dictionary that's passed to the execute function exactly mirrors the eBay Finding API documentation, so if you can read that, you can basically do anything you need with the above three line of code.
eBay 官方页面 https://go.developer.ebay.com/ebay-sdks推荐 https://github.com/timotheus/ebaysdk-python 。目前 ebaysdk-python 已于 9 天前更新并自 2011 年起定期更新,而 python-ebay 已有 20 个月没有更新。
The official eBay page https://go.developer.ebay.com/ebay-sdks recommends https://github.com/timotheus/ebaysdk-python . Currently ebaysdk-python has been updated 9 days ago and regularly since 2011, while python-ebay hasn't been updated for 20 months.