Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foo-git/rewe-discounts
Grabs current REWE discounts and saves them in a markdown file || Holt sich aktuelle REWE-Angebote und exportiert sie in eine Markdown-Liste
https://github.com/foo-git/rewe-discounts
api crawler python rewe
Last synced: 12 days ago
JSON representation
Grabs current REWE discounts and saves them in a markdown file || Holt sich aktuelle REWE-Angebote und exportiert sie in eine Markdown-Liste
- Host: GitHub
- URL: https://github.com/foo-git/rewe-discounts
- Owner: foo-git
- License: gpl-3.0
- Created: 2020-05-25T13:16:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T18:16:03.000Z (7 months ago)
- Last Synced: 2024-12-24T09:07:41.288Z (19 days ago)
- Topics: api, crawler, python, rewe
- Language: Python
- Homepage:
- Size: 41 KB
- Stars: 94
- Watchers: 8
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rewe Discounts
---
**Warning: The script is no longer working due to breaking Rewe API changes**
For details, see [#19](https://github.com/foo-git/rewe-discounts/issues/19) (apparently you need some certificate and private key from the Rewe app).The current working Python fork is from [torbenpfohl](https://github.com/torbenpfohl/rewe-discounts), but check out also the Go version from [ByteSizedMarius](https://github.com/ByteSizedMarius/rewerse-engineering).
Right now, I'm not planning on rewriting this program. It was nice while it lasted. I'll keep this repository open to provide issue tracking/discussions, but I guess I'm gonna pass the torch to another contributor.
---
# Beschreibung
Dieses Programm sucht mittels der Rewe-API für einen bestimmten Rewe-Markt die aktuellen
Angebote und schreibt eine Markdown-formatierte Übersichtsliste heraus.Zur besseren Preisvergleichbarkeit wird der Preis pro Referenzmenge
(z.B. 100 g oder 100 ml) mit ausgegeben.Anwendungsbeispiel:
* Sonntags lädt der Server (z.B. Raspberry Pi/Debian) per cron-Job die
neuen Angebote herunter, und speichert sie als Notiz in einer Nextcloud-Instanz
zum komfortablen Abruf per Smartphone.## Abhängigkeiten (Dependencies)
Die einzige externe Abhängigkeit ist zur Abfrage der Rewe API nötig, und damit Cloudflare die Anfrage durchlässt:
- `$ pip install cloudscraper`## Verwendung (Usage)
* Aktuelles Release [herunterladen](https://github.com/foo-git/rewe-discounts/releases) bzw. Master-Branch klonen.
* `python3 ./rewe_discounts/rewe_discounts.py` ausführen und Hilfetext durchlesen.
* Mit `rewe_discounts.py --list-markets PLZ` lässt sich für eine beliebige Postleitzahl (PLZ) eine Marktliste inklusive der Market ID ausgeben lassen.
* Wähle einen Markt und kopiere die ID, z.B. "562286".
* Durch `rewe_discounts.py --market-id 562286 --output-file "Angebote Rewe.md"` werden die Angebote des Markets in eine Datei geschrieben.Ein Ausschnitt von `Angebote Rewe.md` sieht beispielsweise so aus:
```
# Kochen & Backen
Gültig diese Woche bis Samstag, 30.05.2020**Barilla Pasta**
- 0.79, 1 kg = 1.58
- versch. Ausformungen, je 500-g-Pckg.**Knorr Grillsauce**
- 0.65, 100 ml = 0.26
- versch. Sorten, je 250-ml-Fl.**Erasco Eintopf**
- 1.49, 1 kg = 1.86
- versch. Sorten, je 800-g-Dose**Mondamin Milchreis im Becher**
- 0.79, 100 g = 1.36
- je 58-g-Becher
```Es lassen sich bestimmte Produkte auch hervorheben und an erster Stelle der Datei platzieren.
Hierzu wird noch eine Textdatei angelegt, und pro Zeile ein Suchbegriff wie "Nudeln" oder "Joghurt" eingegeben:`rewe_discounts.py --market-id 562286 --output-file "Angebote Rewe.md" --highlights=highlights.txt`