abyansetya / moneydogs

A Python script to automate task completion on the MoneyDogs-TON platform, including user authentication, task retrieval, and verification.
1 stars 0 forks source link

MoneyDogs Automation Script

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.

Features

File Structure

├── 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=

Usage

  1. Install Dependencies
    First, make sure you have the required Python libraries installed. You can install them via pip:

    pip install requests colorama
  2. Prepare query.txt
    Add your encoded messages (one per line) to the query.txt file. These messages are used to authenticate users.

  3. Run the Script
    Run the script using the following command:

    python moneydogs.py

    The script will:

    • Authenticate each user with the encoded messages.
    • Retrieve the list of tasks for each user.
    • Attempt to complete and verify each task.

    You will see task verification status and error messages (if any) printed in the console.

Error Handling

License

This project is licensed under the MIT License. See the LICENSE file for details.