This Python script allows you to fetch your earnings statements from Skip The Dishes for the year 2022, separate tips from earnings, and generate a report to help with your tax purposes. It requires your user token, app token, and user ID to access your Skip The Dishes account.
Before you can use this script, make sure you have the following:
- Python 3.x installed on your system.
- Required Python libraries installed. You can install them using
pip
:
pip install python-dotenv
-
Clone this repository or download the
skip.py
script to your local machine. -
Open the terminal and navigate to the directory where the script is located.
-
Create a
.env
file similar to.example.env
and add in values forUSER_TOKEN
,APP_TOKEN
, andUSER_ID
with your Skip The Dishes credentials. -
Run the script with the following command:
python skip.py
- The script will fetch your earnings statements for the year 2022, separate tips from earnings, and generate a table with total earnings in tips and total earnings without tips. The table will be displayed in the terminal.
+---------------------+---------------------+
| Total Earnings (with Tips) | Total Earnings (without Tips) |
+---------------------+---------------------+
| $1234.56 | $987.65 |
+---------------------+---------------------+
- This script relies on your Skip The Dishes credentials, so keep them confidential.
This script is provided for educational purposes and personal use only. Use it responsibly and in compliance with Skip The Dishes' terms of service and any applicable laws and regulations.