Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 668 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 668 Bytes

Mergado API Python Client

Usage

from mergadoapiclient import client

# Prepare config with a OAuth2 credentials.
credentials = {
    'client_id': '<client ID>',
    'client_secret': '<client secret key>',
    'grant_type': 'client_credentials',
    'token_uri': 'https://app.mergado.com/oauth2/token/',  # optional
    'api_uri': 'https://api.mergado.com/',  # optional
    'storage_class': 'yourapp.models.TokenStorage',  # optional
}

# Build API client instance.
api = client.build(credentials)

# Get an Eshop with ID = 1.
api.get('shops/1')