No project description provided
Project description
Unofficial Python wrapper for the Picnic API. While not all API methods have been implemented yet, you’ll find most of what you need to build a working application are available.
This library is not affiliated with Picnic and retrieves data from the endpoints of the mobile application. Use at your own risk.
Getting started
The easiest way to install is directly from pip:
$ pip install python-picnic-api
Usage
I’ll go over a few common operations here you’ll most likely use in applications. To login:
from python_picnic_api import PicnicAPI
picnic = PicnicAPI(username='username', password='password', country_code="NL")
The country_code parameter defaults to NL, but you have to change it if you live in a different country than the Netherlands (Germany: DE, Belgium: BE). You can also store your credentials by setting the store value to true, this will store your credentials and country_code in /config/app.yaml.
Searching for a product
>>> picnic.search('coffee')
[{'type': 'CATEGORY', 'id': 'coffee', 'links': [{'type': 'SEARCH', 'href': 'https://storefront-prod.nl.picnicinternational.com/api/15/search?search_term=coffee'}], 'name': 'coffee', 'items': [{'type': 'SINGLE_ARTICLE', 'id': '10511523', 'decorators': [{'type': 'UNIT_QUANTITY', 'unit_quantity_text': '500 gram'}], 'name': 'Lavazza espresso koffiebonen', 'display_price': 599, 'price': 599, 'image_id': 'd3fb2888fc41514bc06dfd6b52f8622cc222d017d2651501f227a537915fcc4f', 'max_count': 50, 'unit_quantity': '500 gram', 'unit_quantity_sub': '€11.98/kg', 'tags': []}, ...
Check cart
>>> picnic.get_cart()
{'type': 'ORDER', 'id': 'shopping_cart', 'items': [], 'delivery_slots': [...
Manipulating your cart
All of these methods will return the shopping cart.
# adding 2 'Lavazza espresso koffiebonen' to cart
picnic.add_product('10511523', count=2)
# removing 1 'Lavazza espresso koffiebonen' from cart
picnic.remove_product('10511523')
# clearing the cart
picnic.clear_cart()
See upcoming deliveries
>>> picnic.get_current_deliveries()
[]
See available delivery slots
>>> picnic.get_delivery_slots()
Project details
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 python-picnic-api-1.0.0.tar.gz.
File metadata
- Download URL: python-picnic-api-1.0.0.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/5.8.0-44-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff341116c46314b5ab41d725d978fb32762e338bab5242b384c595ede3c2b7f5
|
|
| MD5 |
87f483699fc1b057cf3d09d52d604a88
|
|
| BLAKE2b-256 |
23b33d916987c425d44331c9e54cfeb8f8ba9751edf7b68eeea4c9fe6bb1a14a
|
File details
Details for the file python_picnic_api-1.0.0-py3-none-any.whl.
File metadata
- Download URL: python_picnic_api-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/5.8.0-44-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b476e50b81a0611648dce01c4adfe7f0bb0aeeb354f080674f47cb1d66601fcf
|
|
| MD5 |
47facf0489c74644e9472b96202f5a5b
|
|
| BLAKE2b-256 |
664e7c3ec8adfb2f6dd6ea8de2587aa3ad60acd84fc5129790796eb23f23bbe7
|