https://github.com/maseurodrigo/matchmagic
Daily football predictor Telegram bot
https://github.com/maseurodrigo/matchmagic
botfather predicd telegram-bot
Last synced: 3 months ago
JSON representation
Daily football predictor Telegram bot
- Host: GitHub
- URL: https://github.com/maseurodrigo/matchmagic
- Owner: maseurodrigo
- Created: 2024-08-07T15:51:18.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-02-14T06:51:11.000Z (4 months ago)
- Last Synced: 2025-02-14T07:22:17.186Z (4 months ago)
- Topics: botfather, predicd, telegram-bot
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MatchMagic
This project is a python-based telegram bot that interacts with users to provide data from the [Predicd API](https://www.predicd.com/en/predicdAPI.html).
The bot is built on top of the base telegram bot [BotFather](https://telegram.me/BotFather).### Features
- Fetch and display data from the Predicd API.
- Interactive commands for user engagement.
- Basic error handling and logging.### Prerequisites
- Python 3.8 or higher
- `pip` (Python package installer)
- A Telegram bot token from BotFather
- Access to the Predicd API## `.env`
```env
# Predicd API
PREDICD_API_URL = "https://www.predicd.com/api/v1/matches/today/"
PREDICD_AUTH_TOKEN = "Token xxxxx"# Predicd Settings
DOUBLE_CHANCE_MIN = 82
ONLY_WIN_MIN = 68# Telegram Bot Settings
BOT_ACCESS_TOKEN = "xxxxx"
BOT_USERNAME = "@xxxxx"# Telegram Bot Triggers
TIP_TRIGGER = "tips"```