- Have Python 3 installed on your system
- Clone this repo
- Install a virtual environment with
python3 -m venv .venv/
- Activate virtualenv with
source .venv/bin/activate
- Install dependencies with
python3 -m pip install -r requirements.txt
- Run
cp .env.example .env
- Add the necessary authorization tokens in the
.env
file - Run the script with
python3 main.py
- Be shocked by how much money you spend
- URL:
https://glovoapp.com
- Open Glovo in your browser.
- Open Developer Tools (usually accessible via F12 or Ctrl + Shift + I).
- Log in with your account.
- Go to the Network tab.
- Find any request to
https://api.glovoapp.com/v3
. - Copy the Authorization token from the request headers.
- Paste this token into the
.env
file asGLOVO_AUTH_TOKEN
.
- URL:
https://tazz.ro
- Open Tazz in your browser.
- Open Developer Tools and go to the Network tab.
- Log in with your account.
- Go to the Orders page.
- Select the
orders
request that will be present in the network tab's list, and locate the Cookie header in the request headers. - Copy the entire Cookie header value.
- Paste this cookie value into the
.env
file asTAZZ_COOKIE
.
- URL:
https://presto-pizza.ro
- Open Presto in your browser.
- Open Developer Tools and go to the Network tab.
- Log in with your account.
- Find any request to
https://api.presto-pizza.ro/api/v2
. - Copy the UUID from the request headers (it will be used as the Authorization token).
- Paste this UUID value into the
.env
file asPRESTO_AUTH_UUID
.
- URL:
https://food.bolt.eu/en-US/history
- Open Bolt Food in your browser.
- Open Developer Tools and go to the Network tab.
- Log in with your account.
- Select any request with the following format
https://deliveryuser.live.boltsvc.net/deliveryClient
and locate the Authorization token in the request headers. - Copy the Authorization token (formatted as Basic ).
- Copy the Device Id parameter from the request.
- Paste the token into the
.env
file asBOLT_AUTH_TOKEN
. - Paste the device id into the
.env
file asBOLT_DEVICE_ID
.
- URL:
https://www.jerryspizza.ro/orders
- Open Jerry's Pizza in your browser, login if necesary
- Open Developer Tools and go to the Network tab.
- Go to "Istoric Comenzi"
- Select any request with the following format
https://app.jerryspizza.ro/api2/index.php/order/all?id=...
- From the
Authorization
header copy the Bearer token - From the
X-Api-Key
header copy the X-API-KEY - Paste the token into the
.env
file asJERRYS_AUTH_TOKEN
. - Paste the key into the
.env
file asJERRYS_X_API_KEY
.