This script automates tasks for the MoneyDogs-TON platform, including user authentication, retrieving tasks, and verifying task completion. The script reads encoded messages from a text file and processes them sequentially.
├── moneydogs.py # Main Python script for running the automation.
├── query.txt # Text file that contains encoded messages (one per line).
└── README.md # Documentation for the script.
moneydogs.py
This is the main script that handles the logic for authentication, fetching tasks, and completing them. The script reads encoded messages from query.txt
.
query.txt
This file contains one or more encoded messages, each on a new line. Each message is used for user authentication.
Example query.txt
content:
query_id=
query_id=
query_id=
Install Dependencies
First, make sure you have the required Python libraries installed. You can install them via pip:
pip install requests colorama
Prepare query.txt
Add your encoded messages (one per line) to the query.txt
file. These messages are used to authenticate users.
Run the Script
Run the script using the following command:
python moneydogs.py
The script will:
You will see task verification status and error messages (if any) printed in the console.
This project is licensed under the MIT License. See the LICENSE
file for details.