Fetch receipts and more from Lidl Plus
Project description
This python package is unofficial and is not related in any way to Lidl. It was developed by reversed engineered requests and can stop working at anytime!
Python Lidl Plus API
Fetch receipts and more from Lidl Plus.
Installation
pip install lidl-plus
Authentication
To login in Lidl Plus we need to simulate the app login. This is a bit complicated, we need a web browser and some additional python packages. After we have received the token once, we can use it for further requestes and we don't need a browser anymore.
Prerequisites
- Check you have installed one of the supported web browser
- Chromium
- Google Chrome
- Mozilla Firefox
- Install additional python packages
pip install "lidl-plus[auth]"
Commandline-Tool
$ lidl-plus auth
Enter your lidl plus username (phone number): +4915784632296
Enter your lidl plus password:
Enter your language (DE, EN, ...): DE
Enter your country (de, at, ...): de
Enter your verify code: 590287
------------------------- refresh token ------------------------
2D4FC2A699AC703CAB8D017012658234917651203746021A4AA3F735C8A53B7F
----------------------------------------------------------------
Python
from lidlplus import LidlPlusApi
lidl = LidlPlusApi(language="DE", country="de")
lidl.login(phone="+4915784632296", password="password", verify_token_func=lambda: input("Insert code: "))
print(lidl.refresh_token)
Usage
Currently, the only feature is fetching receipts
Receipts
Get your receipts as json and receive a list of bought items like:
{
"currentUnitPrice": "2,19",
"quantity": "1",
"isWeight": false,
"originalAmount": "2,19",
"extendedAmount": "1,98",
"description": "Vegane Frikadellen",
"taxGroup": "1",
"taxGroupName": "A",
"codeInput": "4023456245134",
"discounts": [
{
"description": "5€ Coupon",
"amount": "0,21"
}
],
"deposit": null,
"giftSerialNumber": null
},
Commandline
$ lidl-plus --country=de --language=DE --refresh-token=XXXXX receipt --all > data.json
Python
from lidlplus import LidlPlusApi
lidl = LidlPlusApi("DE", "de", refresh_token="XXXXXXXXXX")
for receipt in lidl.tickets():
pprint(lidl.ticket(receipt["id"]))
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 lidl-plus-0.1.12.tar.gz.
File metadata
- Download URL: lidl-plus-0.1.12.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7566fcc0a76019726a40d8b4347c193eb055fdc64bc5ebeb9e56d2783404ee97
|
|
| MD5 |
558140089fbd030f7798e6111124d624
|
|
| BLAKE2b-256 |
6fb0d293136cf720eb0f1feba40b2fcf9354669181d19507a20ac6222e8b23f7
|
File details
Details for the file lidl_plus-0.1.12-py3-none-any.whl.
File metadata
- Download URL: lidl_plus-0.1.12-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e6dddc7c4e9819c7cb125871b62cd4efda0f1b68f9b40942392abb14c96190b
|
|
| MD5 |
c196fc729a2464ca2e2ee60c85b8a7c3
|
|
| BLAKE2b-256 |
fc75f98958d95af2ee853e936ffb7e5f21e07223db48e8c02cd56e7c85ba8aaa
|