Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inforkgodara/telegram-automated-bulk-messages
It is a python script that sends the Telegram messages automatically from the Telegram desktop application.
https://github.com/inforkgodara/telegram-automated-bulk-messages
automation bulk-message bulk-messages digital-marketing inforkgodara pandas python python-automation python3 telegram telegram-automation telegram-bot telegram-bots telegram-bulk-message-sender telegram-bulk-sender telegram-desktop telegram-web telegrambot whatsapp
Last synced: 7 days ago
JSON representation
It is a python script that sends the Telegram messages automatically from the Telegram desktop application.
- Host: GitHub
- URL: https://github.com/inforkgodara/telegram-automated-bulk-messages
- Owner: inforkgodara
- License: mit
- Created: 2021-06-26T21:59:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-27T17:03:36.000Z (about 1 year ago)
- Last Synced: 2023-10-27T18:26:54.093Z (about 1 year ago)
- Topics: automation, bulk-message, bulk-messages, digital-marketing, inforkgodara, pandas, python, python-automation, python3, telegram, telegram-automation, telegram-bot, telegram-bots, telegram-bulk-message-sender, telegram-bulk-sender, telegram-desktop, telegram-web, telegrambot, whatsapp
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 61
- Watchers: 3
- Forks: 26
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Telegram Automated Bulk Messages
It is a python script that sends the Telegram messages automatically from Telegram desktop application. It can be configured to send advertising messages. It read data from an excel sheet and send a configured message to people.
## Contact me over Telegram: https://t.me/inforkgodara
## Demo
* Video clip on youtube of the script execution. https://youtu.be/EHWqx8r0f2M## Important Note
* If this repository helped you to understand at least something new please give star this repository which motivates me to work further for the similar kinds for projects.## Prerequisites
In order to run the python script, your system must have the following programs/packages installed and the contact number should be saved in your phone (You can use bulk contact number saving procedure of email). There is a way without saving the contact number but has the limitation to send the attachment.
* Python 3.8: Download it from https://www.python.org/downloads
* Pandas : Run in command prompt **pip install pandas**
* Xlrd : Run in command prompt **pip install xlrd**
* Pyautogui: Run in command prompt pip install pyautogui
* Telegram Desktop App : Download from https://desktop.telegram.org/## Approach
* First need to clone this respiratory
* User scans Telegram login QR code to log in into the Telegram Desktop application.
* Run python script script.py using py script.py in the terminal
* The script reads a customized message from an excel sheet.
* The script reads rows one by one and searches that username in the Telegram Desktop Application search box if the username found on Telegram then it will send a configured message otherwise It reads next row.
* Loop executes until and unless all rows complete.Note: If you wish to send an image or documents instead of text you can write code to add attachment send functionality.
## Legal
* This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by Telegram or any of its affiliates or subsidiaries. This is an independent and unofficial software. Use at your own risk. Commercial use of this code/repo is strictly prohibited.## Code
```
# Program to send bulk customized messages through Telegram Desktop application
# Author @inforkgodaraimport pyautogui
import pandas
import timeexcel_data = pandas.read_excel('Recipients data.xlsx', sheet_name='Recipients')
count = 0
time.sleep(3)
for column in excel_data['Username'].tolist():
pyautogui.press('esc')
pyautogui.hotkey('ctrl', 'f')
time.sleep(1)
pyautogui.write(str(excel_data['Username'][count]));
pyautogui.press('enter')
time.sleep(2)
pyautogui.press('down')
pyautogui.press('enter')
pyautogui.write(str(excel_data['Message'][0]));
pyautogui.press('enter')
pyautogui.press('esc')
count = count + 1print('The script executed successfully.')
```
Note: The script may not work in case if the accessibility of Telegram changed.Find it on youtube. https://youtu.be/EHWqx8r0f2M