--- id: ebaysdk version: "2.2.0" license: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 license_treatment: copyleft maintenance: abandoned --- # ebaysdk — eBay SDK for Python License: copyleft · Maintenance: abandoned · Downloads: 116.7K/mo ## What it is and what it does ebaysdk is a Python wrapper around eBay's public APIs (Finding, Shopping, Trading, and Merchandising), designed to reduce boilerplate by standardizing how you construct requests, parse responses, handle errors, and debug API interactions. It provides dedicated Connection classes for each API type and supports both direct configuration and YAML-based setup. The package wraps raw HTTP calls through lxml and requests, converting eBay's XML responses into Python objects with datetime parsing and dictionary conversion. It's intended for developers building eBay integrations who want to avoid repeating the same error-handling and response-parsing logic across multiple API calls. Use it for: - Search eBay listings programmatically using the Finding API with standardized keyword and filter parameters. - Retrieve public product and item data via the Shopping API without managing raw HTTP requests and XML parsing. - Authenticate and execute authenticated Trading API calls for private account data with valid credentials. - Build concurrent eBay API queries using the Parallel class to fetch multiple items or search results in one batch. - Integrate eBay marketplace data into a Python application with centralized error handling and response normalization. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Programmatic interface to eBay's Finding, Shopping, Trading, and Merchandising APIs, standardizing calls, response processing, error handling, and debugging across multiple eBay API endpoints. No—not for new projects. The package is abandoned (last release 2020-04-20) and classifiers indicate support only for Python 2.6–3.5, which are out of support. eBay's API platform has likely evolved; compatibility is unverified. Only consider it if maintaining legacy code already using ebaysdk. For new integrations, verify current API compatibility or contact eBay for supported libraries. ## Install pip install ebaysdk uv add ebaysdk poetry add ebaysdk ## Installing ebaysdk Before you install: Low install friction with only two runtime dependencies (lxml and requests). However, the package is abandoned—last release was 2020-04-20, with no active maintenance. License in practice: Licensed under CDDL-1.0 (copyleft), which requires derivative works and modifications to be distributed under the same license. This may restrict commercial use or integration into proprietary projects without careful legal review. Quickstart: from ebaysdk.finding import Connection from ebaysdk.exception import ConnectionError try: api = Connection(appid='YOUR_APPID_HERE', config_file=None) response = api.execute('findItemsAdvanced', {'keywords': 'legos'}) print(response.reply.ack) except ConnectionError as e: print(e) Requires a valid eBay API appid; eBay API endpoints and authentication methods may have changed since the last release. Verify before relying: - Whether eBay API endpoints and authentication protocols remain compatible with current eBay platform - Current Python version support—classifiers list Python 2.6–3.5 but compatibility with modern versions is unverified - Whether YAML configuration and parallel API call features are production-ready or documented ## Package facts - License: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 (copyleft) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 116.7K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags ebay api python sdk, ebay finding api client, ebay trading api wrapper, ebay shopping api integration, ebay merchandise search, ebay api standardized calls, python ebay connector, ebay-integration, abandoned-maintenance [View on SkillFed](https://skillfed.io/packages/ebaysdk) · [View on PyPI](https://pypi.org/project/ebaysdk/)