Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

MeoMunDep/Midas-Yielder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DISCLAIMER: THIS PAGE WAS MADE AS A PERSONAL EDUCATIONAL PROJECT. This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. This page is a personal project made in connection with an educational exercise.


🚀 Bot Setup Instructions

Welcome to the bot setup guide! Follow the steps below to install and configure the bot correctly. This guide is beginner-friendly and provides clear steps for all platforms.


📑 Table of Contents

  1. Installation Steps
  2. Configuration Files
  3. Running the Bot
  4. Wrapper Scripts (Optional)
  5. Contact and Support

🔹 Installation Steps
  1. Install Node.js (v18+) or Python 3.10+

    • This bot runs with Python, make sure it's installed from python.org.

    • Check version:

      python --version
  2. Install required dependencies From the bot folder, run:

    pip install -r requirements.txt
  3. Prepare configuration files Make sure all files in the Configuration Files section are set up properly.


🔹 Configuration Files

1. configs.json - Adjust Bot Settings

{
  "skipInvalidProxy": false,
  "proxyRotationInterval": 2,
  "delayEachAccount": [1, 81],
  "timeToRestartAllAccounts": 300,
  "howManyAccountsRunInOneTime": 10,
  "doTasks": true,
  "retryOnLoginFail": 3
}

2. datas.txt - User Data

  • Download from: here
  • Format:
query_id.../user...
query_id.../user...

3. proxies.txt - Proxy List (Optional)

Supported formats per line:

http://user:pass@host:port
socks5://host:port

Leave blank if no proxy is used.


🔹 Running the Bot

Open a terminal in the folder where meomundep.py is located.

Run directly:

python meomundep.py

🔹 Wrapper Scripts (Optional)

Windows (run.bat)

@echo off
python meomundep.py
pause

Linux/macOS (run.sh)

#!/bin/bash
python3 meomundep.py

Make executable:

chmod +x run.sh
./run.sh

🔹 Contact and Support