Skip to main content

Python client to shoper.pl REST api

Project description

pyshoper - Python client to shoper.pl REST api

Summary

Exampler of use

Basic usage of pyshoper:

from pyshoper.client import ShoperClient

base_url = "https://example.com"
api = ShoperClient('login', 'password', base_url=base_url)

print(api.products_list(filters={'stock.stock': 0}))

and expected result should something alike:

{
    'count': '49',
    'list': [
        {'code': 'prod-0001', ...},
        {'code': 'prod-0002', ...},
        {'code': 'prod-0003', ...},
        {'code': 'prod-0004', ...},
        ...
    ],
    'page': 1,
    'pages': 5,
}

to iterate through all products using client's generator:

for i, prod in enumerate(api.products_generator(limit=100)):
    print(prod)
    if i > 200:
        break

More

Exceptions

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

pyshoper-0.1.2.tar.gz (10.7 kB view hashes)

Uploaded Source

Built Distribution

pyshoper-0.1.2-py3-none-any.whl (16.9 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