Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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_codes

addresses = [
Address(
province="madrid",
city="madrid",
street_name="calle atocha",
street_number=64,
)
]

update_codes(addresses, base_folder="dominos-codes")
```