Skip to content

luca2499/ticketbot

Repository files navigation

Absolutely! Here's the **copy-paste-ready version** of the `README.md` with clean formatting and all sections included: --- ```markdown # 🎫 Ticket Auto-Buy Bot A Python automation bot that buys tickets from Ticketmaster and similar platforms. Includes CAPTCHA solving, login automation, proxy rotation, and seat selection features. > ⚠️ For educational purposes only. Use responsibly and do not violate website terms of service. --- ## ✨ Features - ✅ Auto-launches ticket page - ✅ Solves Google reCAPTCHA using 2Captcha - ✅ Simulates login with real credentials - ✅ Seat selection logic (basic zone/price tier targeting) - ✅ Proxy rotation from a file - ✅ GUI version using Tkinter - ✅ GitHub Actions CI workflow --- ## 📁 Project Structure ``` ticket\_auto\_bot/ ├── main.py # Entry point ├── config.py # Editable configuration ├── ticketmaster\_bot.py # Core automation logic ├── captcha\_solver.py # Handles 2Captcha integration ├── gui.py # GUI version with Tkinter ├── proxy\_list.txt # List of proxies for rotation ├── requirements.txt # Dependencies ├── .gitignore └── README.md ```` --- ## ⚙️ Setup Instructions ### 1. Clone the Repo ```bash git clone https://github.com/YOUR_USERNAME/ticket-auto-buy-bot.git cd ticket-auto-buy-bot ```` ### 2. Install Dependencies ```bash pip install -r requirements.txt ``` ### 3. Configure the Bot Edit `config.py` with your own details: ```python TICKET_URL = "https://www.ticketmaster.com/event/EXAMPLE" EMAIL = "your_email@example.com" PASSWORD = "your_password" CAPTCHA_API_KEY = "your_2captcha_api_key" HEADLESS = False USE_PROXY = True ``` Add your proxy list to `proxy_list.txt`. --- ## 🖥️ How to Use ### Run from Terminal ```bash python main.py ``` ### Use the GUI ```bash python gui.py ``` --- ## 📦 Publish to GitHub To upload your code: ```bash git init git remote add origin https://github.com/YOUR_USERNAME/ticket-auto-buy-bot.git git add . git commit -m "Initial commit" git branch -M main git push -u origin main ``` --- ## 📢 Disclaimer This project is for personal, educational use only. Do not use for illegal activity or to violate ticketing websites’ [terms of service](https://www.ticketmaster.com/h/terms.html). --- ## 💬 Questions? Open an issue or contact the maintainer. ``` --- 📌 **TIP**: Replace `YOUR_USERNAME` with your GitHub username before uploading. Let me know if you want a version with screenshots, badges, or setup GIFs! ```

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages