Skip to main content

eBay Browse API Python client

Project description

coverage build_status Documentation Status PyPI version

This package is a Python client for eBay Browse API. It is asynchronous and designed to send a large number of requests by one function call.

For more information about this API visit official documentation.

Installation

Install from PyPI by pip install browseapi

Supported methods

Only these methods are now implemented (names changed to lowercase notation):

Quickstart

Create a BrowseAPI instance with your application id (app_id) and application secret (cert_id) and start sending requests:

from browseapi import BrowseAPI

app_id = '<your_app_id>'
cert_id = '<your_cert_id>'

api = BrowseAPI(app_id, cert_id)
responses = api.execute('search', [{'q': 'drone', 'limit': 50}, {'category_ids': 20863}])

# this will make 'search' request two times with parameters
# q=drone and limit=50 for the first time and
# category_ids=20863 for the second time

print(responses[0].itemSummaries[0])

All response fields have similar names and types as those mentioned in official docs.

Tests

For running tests put your secret.json file with fields 'eb_app_id' and 'eb_cert_id' to the browseapi/tests directory, then run a command from the parent browseapi directory:

python -m unittest browseapi.tests.test_client

You may get warnings like this:

ResourceWarning: unclosed transport

Just ignore it.

Requirements

Documentation

Documentation built with mkdocs.

browseapi.readthedocs.io

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

browseapi-0.12.2.tar.gz (13.9 kB view hashes)

Uploaded Source

Built Distribution

browseapi-0.12.2-py3-none-any.whl (14.2 kB view hashes)

Uploaded Python 3

Supported by

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