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.finding import Connection try: api = Connection(appid='YOUR_APPID_HERE') 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())
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
- 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.
- SDK Configuration
- Sample code can be found in the samples directory.
- Understanding the Request Dictionary.
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.
Installation instructions for *nix and windows can be found in the INSTALL file.
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 (CDDL-1.0)