A simple Python client for PrestaShop API to extract orders
Project description
Prestashop Orders Client
Prestashop Orders Client is a simple client for PrestaShop Api. The main goal of this project is to provide a simple and easy to use client to interact with PrestaShop Api and to extract either a single order or all orders data. Initially was designed for our own needs, as we had a big amount of tasks with orders which had to be automated like sending a fresh paid order to our post service, but we decided to share it with the community. Maybe it will be useful for someone else :)
>>> from prestashop_orders_client import PrestaShopOrderClient
>>> client = PrestaShopOrderClient(shop_link="myshop.com", api_key="my_api_key")
>>> client.get_order(1)
Order(id=1, total_paid=500.0, reference='ABCD'
order_state='Shipped', email='examplemail@gmail.com',
first_name='John', last_name='Doe',
company_name=None, phone='+12345678',
address='Example address',
city='Example city', post_code='123456',
country='Example country', state=None)
>>> client.get_all_orders()
[
Order(id=1, total_paid=500.0, reference='ABCD'
order_state='Shipped', email='examplemail@gmail.com',
first_name='John', last_name='Doe',
company_name=None, phone='+12345678',
address='Example address',
city='Example city', post_code='123456',
country='Example country', state=None),
Order(id=2, total_paid=1000.0, reference='ABCD'
order_state='Shipped', email='examplemail@gmail.com',
first_name='John', last_name='Doe',
company_name=None, phone='+12345678',
address='Example address',
city='Example city', post_code='123456',
country='Example country', state=None),
....
]
>>> client.orders_amount
8
Make sure your server has SSL certificate installed, as PrestaShop Api requires it and our client uses "https" for performing requests.
Installation
Our client available on PyPI:
$ python -m pip install prestashop_orders_client
Python 3.10+ is required.
Important Notes
- Make sure you WebService is enabled in your PrestaShop Admin Panel. (Advanced Parameters -> Webservice)
- Make sure that you have created an Api Key for your WebService. (Advanced Parameters -> Webservice -> Add new key)
- Make sure you have added GET permissions at least to these resources : addresses, countries, customers, orders_states, orders, states
License
The project is licensed under the Apache 2.0 License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file prestashop_orders_client-1.0.0.tar.gz.
File metadata
- Download URL: prestashop_orders_client-1.0.0.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97f8c2ca0fda947b88c44828c7e4af49c85fbc122d4767dd26b1817856075e2e
|
|
| MD5 |
75e38e7e6e36cb9cfb3f0cf33db741e6
|
|
| BLAKE2b-256 |
bf3c2610c6bf88fe45651abc8bf38489d7fcedbc25571126149b6250a0354b9c
|
File details
Details for the file prestashop_orders_client-1.0.0-py3-none-any.whl.
File metadata
- Download URL: prestashop_orders_client-1.0.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
130e0abca747035dc822676a310cbc7cd0ebd7adea2ef7b404f8fab530a7532a
|
|
| MD5 |
52fc1c371b8427dd95637544171f75fc
|
|
| BLAKE2b-256 |
03bb642c6a71ff36e281373dc9746311e76f51f04e6b3dd7a1309d66405a107d
|