• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

timotheus/ebaysdk-python: eBay API SDK for Python

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

timotheus/ebaysdk-python

开源软件地址:

https://github.com/timotheus/ebaysdk-python

开源编程语言:

Python 100.0%

开源软件介绍:

Welcome to the python ebaysdk

This SDK is a programmatic interface into the eBay APIs. It simplifies development and cuts development time by standardizing calls, response processing, error handling, and debugging across the Finding, Shopping, Merchandising & Trading APIs.

Quick Example:

import datetime
from ebaysdk.exception import ConnectionError
from ebaysdk.finding import Connection

try:
    api = Connection(appid='YOUR_APPID_HERE', config_file=None)
    response = api.execute('findItemsAdvanced', {'keywords': 'legos'})

    assert(response.reply.ack == 'Success')
    assert(type(response.reply.timestamp) == datetime.datetime)
    assert(type(response.reply.searchResult.item) == list)

    item = response.reply.searchResult.item[0]
    assert(type(item.listingInfo.endTime) == datetime.datetime)
    assert(type(response.dict()) == dict)

except ConnectionError as e:
    print(e)
    print(e.response.dict())

Migrating from v1 to v2

For a complete guide on migrating from ebaysdk v1 to v2 and see an overview of the additional features in v2 please read the v1 to v2 guide

Getting Started

  1. SDK Classes
  • Trading API Class - secure, authenticated access to private eBay data.
  • Finding API Class - access eBay's next generation search capabilities.
  • Shopping API Class - performance-optimized, lightweight APIs for accessing public eBay data.
  • Merchandising API Class - find items and products on eBay that provide good value or are otherwise popular with eBay buyers.
  • HTTP Class - generic back-end class the enbles and standardized way to make API calls.
  • Parallel Class - SDK support for concurrent API calls.
  1. SDK Configuration
  1. Sample code can be found in the samples directory.
  2. Understanding the Request Dictionary.

Support

For developer support regarding the SDK code base please use this project's Github issue tracking.

For developer support regarding the eBay APIs please use the eBay Developer Forums.

Install

Installation instructions for *nix and windows can be found in the INSTALL file.

License

COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 (CDDL-1.0)




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap