Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sralloza/dominos
Script to automatically check dominos codes
https://github.com/sralloza/dominos
Last synced: about 1 month ago
JSON representation
Script to automatically check dominos codes
- Host: GitHub
- URL: https://github.com/sralloza/dominos
- Owner: sralloza
- Created: 2020-10-24T13:07:30.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-10T17:48:15.000Z (about 1 year ago)
- Last Synced: 2023-11-10T18:40:23.589Z (about 1 year ago)
- Language: Python
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Domino's codes finder
Given the shop address, it checks all the known coupons to see if they are valid in that specific shops.
## How to use
```python
from dominos.schemas import Address
from dominos.main import update_codesaddresses = [
Address(
province="madrid",
city="madrid",
street_name="calle atocha",
street_number=64,
)
]update_codes(addresses, base_folder="dominos-codes")
```