Python Marketman is a basic marketman.com REST API client built for Python 3.6, 3.7 and 3.8. The goal is to provide a very low-level interface to the REST Resource, returning a dictionary of the API JSON response.
You can find out more regarding the format of the results in the Official Marketman.com REST API Documentation
- Python: 3.6, 3.7, 3.8
Install with pip, or your preferred package manager:
$ pip install python-marketman
To access your Marketman account, provide your API Key and API Password to your Marketman instance.
For example:
from python_marketman import Marketman
mm = Marketman(api_key='', api_password='')
Access your inventory by calling the relevant method on your Marketman instance:
mm.get_items()
Access your inventory by calling the relevant method on your Marketman instance:
mm.get_vendors()
This package is released under an open source Apache 2.0 license: Copyright 2020 Lukas Klement. It was inspired by the excellent library Official Marketman.com REST API Documentation