Skip to main content

Wraps the eBay REST APIs.

Project description

ebay_rest

A Python 3 pip package that wraps eBay’s REST APIs.

Table of Contents


Installation

Basic Installation

The basic installation provides core functionality without browser automation. It is lighter, easier to install, and sufficient for most use cases.

pip install ebay_rest

If Python 2 is installed, use pip3 instead.

Complete Installation

The complete installation includes browser automation for getting eBay user tokens.

pip install ebay_rest[complete]

After installing the package, install Playwright and Chromium:

playwright install chromium

Note: Playwright may require additional system dependencies. See Playwright installation guide for details.


Setup

Follow the setup instructions in the example configuration file.


Usage

Here is a basic example of using ebay_rest to retrieve eBay's global site IDs and search for iPhones:

from ebay_rest import API, DateTime, Error, Reference

print(f"eBay's official date and time is {DateTime.to_string(DateTime.now())}.\n")

print("All valid eBay global id values, also known as site ids.")
print(Reference.get_global_id_values(), '\n')

try:
    api = API(application='production_1', user='production_1', header='US')
except Error as error:
    print(f'Error {error.number} is {error.reason}  {error.detail}.\n')
else:
    try:
        print("The five least expensive iPhone things now for sale on-eBay:")        
        for record in api.buy_browse_search(q='iPhone', sort='price', limit=5):
            if 'record' not in record:
                pass    # TODO Refer to non-records, they contain optimization information.
            else:
                item = record['record']
                print(f"item id: {item['item_id']} {item['item_web_url']}")
    except Error as error:
        print(f'Error {error.number} is {error.reason} {error.detail}.\n')
    else:
        pass

print("\nClass documentation:")
print(help(API))    # Over a hundred methods are available!
print(help(DateTime))
print(help(Error))
print(help(Reference))

FAQ

How are API results structured?
  • Basic types: strings, integers, dates.
  • dict (objects): Groups related elements.
  • list (arrays): Repetitive structures with one or more elements.
  • Optional elements may be omitted, mandatory elements are set to None if empty.
How are paged API results handled?
  • A Python generator is used instead of a list.
  • Do not supply an "offset" parameter.
  • "limit" controls how many records to retrieve.
  • To retrieve all records, omit "limit." Be aware of eBay's 10,000 record count limit.
Can the browser automation be avoided?

Yes, reuse the refresh token after the first retrieval. Modify your ebay_rest.json file:

"refresh_token": "your_refresh_token",
"refresh_token_expiry": "your_token_expiry"
  
Does this library support threading/multiprocessing?

Threading is safe. Multiprocessing is untested (help wanted).

Why does eBay return "Internal Error"?

Making repeated calls with the same parameters in a short time can trigger this error.


Optimization & Performance

To optimize API calls:

  1. Cache responses to avoid redundant API calls.
  2. Use filters to limit response data.
  3. Use generators instead of lists for paged results.
  4. Utilize threading (but be mindful of rate limits).
  5. Reuse the API instance to avoid unnecessary authentication overhead.
  6. Optimize your network (faster internet connection, lower latency).

Contributing

Contributions are welcome! Please fork this repository and submit a pull request. Follow the coding standards outlined in CONTRIBUTING.md.


Legal

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ebay_rest-1.0.11.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ebay_rest-1.0.11-py3-none-any.whl (2.9 MB view details)

Uploaded Python 3

File details

Details for the file ebay_rest-1.0.11.tar.gz.

File metadata

  • Download URL: ebay_rest-1.0.11.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for ebay_rest-1.0.11.tar.gz
Algorithm Hash digest
SHA256 b8eb639e65e0b2fd976b30ef26a94ae86d7aed16855d4efcd5f15937d43f7613
MD5 86fdf30ef7d3d06ba93d8d0716b53e44
BLAKE2b-256 fb21bdd162a72b556efe0b53c3264c07385e8a5d4ed9523bf2e996f5e3f58ec8

See more details on using hashes here.

File details

Details for the file ebay_rest-1.0.11-py3-none-any.whl.

File metadata

  • Download URL: ebay_rest-1.0.11-py3-none-any.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for ebay_rest-1.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 f5feef60f47399cc4d0a4367864a51daa09436e4a12e908e2ab2d7a06f9b7416
MD5 cf8d32c89c5b6dc22333a420823a93cc
BLAKE2b-256 7931bf00953b09e01b40ddc9af46bf145a9afa2e7f1f4cfcb60f34e934e8772c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page