petersmatana / mergado-api-client-python

Mergado API Client for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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://app.mergado.com/api/',  # 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')

About

Mergado API Client for Python

License:MIT License


Languages

Language:Python 100.0%