A versatile bot that sends instant Telegram notifications for:
- GitHub Sponsors payments.
- Binance cryptocurrency deposits and P2P payment receipts.
- UPI and HDFC Bank transactions (via email parsing).
Get real-time alerts with complete transaction details directly to your Telegram account.
- Features
- Prerequisites
- Installation
- Configuration
- Usage
- Deployment
- Architecture
- Troubleshooting
- Performance Optimization
- Contributing
- License
- Real-time GitHub Sponsors Notifications: Immediate alerts for new GitHub sponsorships.
- Binance Payment Alerts:
- Notifications for new cryptocurrency deposits.
- Alerts for completed P2P payment receipts.
- UPI & HDFC Bank Alerts (via Email Parsing):
- Parses emails from a configured IMAP account to detect and notify about UPI and HDFC Bank transactions.
- Customizable sender/subject filters for email identification.
- Complete Transaction Details: Get sponsor name, amount, tier, payment source, transaction IDs, and timestamps.
- Secure Webhook Integration: Verifies GitHub webhook signatures.
- Secure Credential Management: Uses environment variables for API keys and sensitive data.
- Modular Design: Payment sources are handled by separate modules for easy extension.
- Docker Support: Easy deployment with Docker.
- Customizable: Configure to meet your specific needs.
- Lightweight: Minimal resource requirements.
- Open Source: MIT licensed, free to use and modify.
Before you begin, ensure you have the following:
- Python 3.7 or higher
- A Telegram account
- Docker (optional, for containerized deployment)
- For GitHub Sponsors Alerts:
- A GitHub account with Sponsors enabled.
- A publicly accessible server to receive webhooks (or use a service like ngrok for testing).
- For Binance Alerts (Optional):
- A Binance account.
- Binance API Key and Secret.
- For UPI/HDFC Email Alerts (Optional):
- An email account that receives UPI/HDFC payment notifications.
- IMAP access details for that email account (host, port, username, password).
The easiest way to get started is using Docker:
-
Clone this repository:
git clone https://github.com/yourusername/github-sponsors-webhook-bot.git cd github-sponsors-webhook-bot -
Create a
.envfile based on the example:cp .env.example .env
-
Edit the
.envfile with your credentials (see Configuration section). -
Build and run the Docker container:
docker build -t payment-alert-bot . docker run -d -p 5000:5000 --name payment-alert-bot --env-file .env payment-alert-bot
If you prefer to run the bot without Docker:
-
Clone this repository:
git clone https://github.com/yourusername/github-sponsors-webhook-bot.git cd github-sponsors-webhook-bot -
Create a virtual environment:
python3 -m venv venv # Or use 'python' if 'python3' is not available source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt # You might need to install python-binance if not already included # pip install python-binance
-
Create a
.envfile based on the example:cp .env.example .env
-
Edit the
.envfile with your credentials (see Configuration section). -
Run the bot:
python3 github_sponsors_bot.py # Or use 'python'
The bot requires various environment variables to be set in your .env file. Refer to the .env.example file for a complete list and descriptions. Key variables include:
Core:
| Variable | Description | Example |
|---|---|---|
GITHUB_WEBHOOK_SECRET |
Secret for verifying GitHub webhook signatures (for Sponsors) | your_webhook_secret |
TELEGRAM_TOKEN |
Telegram Bot API token | 1234567890:ABCDEFGHIJKLMNOPQRSTUVWXYZ |
TELEGRAM_CHAT_ID |
Telegram chat ID to send notifications to | 123456789 |
WEBHOOK_HOST |
Host to bind the webhook server to (optional) | 0.0.0.0 |
WEBHOOK_PORT |
Port to bind the webhook server to (optional) | 5000 |
Binance Alerts (Optional):
| Variable | Description |
|---|---|
BINANCE_API_KEY |
Your Binance API Key |
BINANCE_API_SECRET |
Your Binance API Secret |
BINANCE_POLL_INTERVAL |
Interval in seconds to poll Binance (default: 300) |
IMAP Email Alerts (Optional - for UPI/HDFC):
| Variable | Description |
|---|---|
IMAP_HOST |
IMAP server hostname |
IMAP_PORT |
IMAP server port (default: 993 for SSL) |
IMAP_USER |
IMAP account username |
IMAP_PASSWORD |
IMAP account password |
IMAP_MAILBOX |
Mailbox to check (default: INBOX) |
IMAP_POLL_INTERVAL |
Interval in seconds to poll IMAP (default: 600) |
UPI_EMAIL_SENDER_FILTER |
Optional: Email address or keyword to filter UPI emails |
HDFC_EMAIL_SENDER_FILTER |
Optional: Email address or keyword to filter HDFC emails |
- Go to your GitHub repository or organization settings.
- Navigate to "Webhooks" and click "Add webhook".
- For the Payload URL, enter your server URL (e.g.,
https://your-server.com/webhook/github). - Set Content type to
application/json. - Generate a secure random string for your webhook secret (e.g.,
openssl rand -hex 20). - Enter this secret in the "Secret" field on GitHub and in your
.envfile (GITHUB_WEBHOOK_SECRET). - Under "Which events would you like to trigger this webhook?", select "Let me select individual events".
- Check only the "Sponsorships" option.
- Ensure "Active" is checked and click "Add webhook".
- Log in to your Binance account.
- Navigate to API Management (usually under your profile icon).
- Create a new API key.
- Important Security Note:
- Grant only necessary permissions (e.g., "Enable Reading" for fetching transaction history). Do NOT enable trading or withdrawal permissions unless absolutely necessary and you understand the risks.
- Consider restricting API key access to trusted IP addresses if possible.
- Copy the API Key and Secret Key to your
.envfile (BINANCE_API_KEY,BINANCE_API_SECRET).
- Ensure IMAP access is enabled for the email account you want to use.
- Gather your IMAP server details:
- IMAP Host (e.g.,
imap.gmail.com,outlook.office365.com) - IMAP Port (usually 993 for SSL/TLS, or 143 for non-SSL)
- Your email username and password (or an app-specific password if your provider requires it, like Gmail with 2FA).
- IMAP Host (e.g.,
- Enter these details into your
.envfile (IMAP_HOST,IMAP_PORT,IMAP_USER,IMAP_PASSWORD). - Specify the
IMAP_MAILBOX(e.g.,INBOX, or a specific folder where payment emails arrive). - Optionally, set
UPI_EMAIL_SENDER_FILTERandHDFC_EMAIL_SENDER_FILTERto help the bot identify relevant emails. These can be sender email addresses (e.g.,alerts@hdfcbank.com) or keywords expected in the subject/body.
Note on Email Parsing: The accuracy of UPI/HDFC alerts depends heavily on the consistency of email formats. The parsing logic in payment_sources/imap_alerts.py may need to be customized based on the specific emails you receive.
- Open Telegram and search for @BotFather.
- Send the command
/newbotand follow the instructions. - BotFather will provide you with a token (copy this to
TELEGRAM_TOKENin your.envfile). - Start a chat with your new bot by clicking the link provided by BotFather.
- To get your chat ID, start a chat with @userinfobot.
- The bot will reply with your account information, including your Chat ID.
- Copy this Chat ID to
TELEGRAM_CHAT_IDin your.envfile.
Once configured, the bot will:
- Start a webhook server listening for GitHub Sponsors events (if configured).
- Initialize the Telegram bot.
- Start polling threads for Binance and/or IMAP email alerts (if configured and enabled).
- Send a startup message to your Telegram chat indicating active services.
- Process incoming events/data and send notifications.
The bot logs its activity to both the console and a log file (github_sponsors_bot.log).
You can test the GitHub Sponsors webhook integration without setting up a real GitHub webhook by using the included test script:
python3 test_webhook.py # Or use 'python'This will send a simulated GitHub Sponsors webhook event to your local server. If everything is set up correctly, you should receive a notification in your Telegram chat.
For testing with a real GitHub webhook but without exposing your local server to the internet, you can use ngrok:
ngrok http 5000Then update your GitHub webhook URL with the ngrok URL (e.g., https://a1b2c3d4.ngrok.io/webhook/github).
For local development or personal use, you can run the bot directly on your machine:
python3 github_sponsors_bot.py # Or use 'python'To keep the bot running after you close your terminal, use tools like nohup (Linux/macOS), screen/tmux, or Windows Task Scheduler.
For production use, deploying to a cloud provider is recommended. The Docker setup facilitates this. Examples include Heroku, AWS EC2, Digital Ocean Droplets. Ensure your environment variables are securely configured on the cloud platform.
The bot is designed with a modular architecture:
- Main Application (
github_sponsors_bot.py): Handles core logic, Flask web server for GitHub webhooks, Telegram bot initialization, and orchestration of polling threads. - Payment Source Modules (
payment_sources/):binance_alerts.py: Connects to Binance API, fetches payment data.imap_alerts.py: Connects to IMAP server, fetches and parses emails for UPI/HDFC.
- Configuration: Managed via environment variables (
.envfile).
For more details, see ARCHITECTURE.md.
- Webhook Not Receiving Events (GitHub):
- Verify server accessibility, webhook URL, server status, firewall.
- Check GitHub webhook delivery logs.
- Invalid Signature Errors (GitHub):
- Match
GITHUB_WEBHOOK_SECRETbetween GitHub and.env. - Ensure
application/jsoncontent type.
- Match
- Telegram Bot Not Sending Messages:
- Correct
TELEGRAM_TOKENandTELEGRAM_CHAT_ID. - Ensure you've started a chat with the bot.
- Correct
- Binance/IMAP Alerts Not Working:
- Double-check API keys/credentials in
.env. - Verify polling intervals and necessary permissions (Binance API, IMAP access).
- Check logs for specific error messages from these modules.
- For IMAP, ensure email filters (
UPI_EMAIL_SENDER_FILTER,HDFC_EMAIL_SENDER_FILTER) are correctly set if used, and that the parsing logic inimap_alerts.pymatches your email formats.
- Double-check API keys/credentials in
- Docker Container Issues:
- Check Docker logs:
docker logs payment-alert-bot. - Verify environment variables and port availability.
- Check Docker logs:
To enable more detailed logging, modify the logging level in github_sponsors_bot.py:
logging.basicConfig(
level=logging.DEBUG, # Change from INFO to DEBUG
# ... rest of the config
)- Use HTTPS: For GitHub webhook endpoint.
- Efficient Polling: Set reasonable
BINANCE_POLL_INTERVALandIMAP_POLL_INTERVALto avoid excessive API/server load. - Production WSGI Server: For production, use Gunicorn (included in Docker) or uWSGI.
- Monitor Resources: Keep an eye on CPU/memory.
- Reverse Proxy: Use Nginx or Apache for production deployments.
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
This project is licensed under the MIT License - see the LICENSE file for details.