Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/micronax/python-shopware-rest-client
A Python REST Client for Shopware
https://github.com/micronax/python-shopware-rest-client
Last synced: 3 months ago
JSON representation
A Python REST Client for Shopware
- Host: GitHub
- URL: https://github.com/micronax/python-shopware-rest-client
- Owner: micronax
- License: other
- Created: 2013-03-09T20:24:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-08-25T16:04:59.000Z (about 3 years ago)
- Last Synced: 2024-04-22T15:11:05.270Z (7 months ago)
- Language: Python
- Size: 57.6 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-shopware - Shopware 5 API SDK Python - Shopware 5 API SDK written in Python. (Connectors)
README
=============
shopware_rest
=============A Python REST Client for Shopware 5 (https://developers.shopware.com/developers-guide/rest-api/)
Usage
=====
.. code-block:: pythonfrom shopware_rest import rest
client = rest.sapi()
client.setCredentials('username', 'token', 'api_base_url')
articles = client.get('articles/1')
client.post('articles/1', {'name': 'New Article Name'})Contribution
============
This is just an experimental release - Feel free to contribute your ideas and improvements using pull requestLicense
=======
Licensed under the MIT License (see LICENSE.txt)Note
====
This project has been set up using PyScaffold 2.4.2. For details and usage
information on PyScaffold see http://pyscaffold.readthedocs.org/.