[Python Script] Group Member Adder Bot that adds members to your group.
Hey everyone! πI just wanted to share a Python script that I've made available on GitHub, designed to help you automate adding members to your Telegram groups. π²The script is called Telegram Member Booster, and it allows you to quickly and efficiently add members from a list of contacts or from another group. Itβs a handy tool if you're managing a Telegram community and want to grow it faster.π» The code is open-source, and you can find it here:
π Telegram Member Booster on GitHubFeel free to contribute to the project or report any bugs or improvements directly on GitHub. If you have any questions or feedback, Iβm happy to help!Happy automating! π
Submitted September 27, 2024 at 07:02PM by errsaa
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fqsl8n/python_script_group_member_adder_bot_that_adds/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hey everyone! πI just wanted to share a Python script that I've made available on GitHub, designed to help you automate adding members to your Telegram groups. π²The script is called Telegram Member Booster, and it allows you to quickly and efficiently add members from a list of contacts or from another group. Itβs a handy tool if you're managing a Telegram community and want to grow it faster.π» The code is open-source, and you can find it here:
π Telegram Member Booster on GitHubFeel free to contribute to the project or report any bugs or improvements directly on GitHub. If you have any questions or feedback, Iβm happy to help!Happy automating! π
Submitted September 27, 2024 at 07:02PM by errsaa
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fqsl8n/python_script_group_member_adder_bot_that_adds/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
1527 groups and channels related to child abuse banned on September, 27.
Total this month: 51528
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 51528
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
144 terrorist bots and channels banned on September, 27.
Total this month: 8338
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 8338
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
How to Send Logs and Errors to Telegram bot from Your Projects
https://i.redd.it/dn1y6nmurird1.jpeg
Submitted September 28, 2024 at 11:32AM by SashaKryzh
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fram4c/how_to_send_logs_and_errors_to_telegram_bot_from/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://i.redd.it/dn1y6nmurird1.jpeg
Submitted September 28, 2024 at 11:32AM by SashaKryzh
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fram4c/how_to_send_logs_and_errors_to_telegram_bot_from/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
π€ New bot
π Name: lolsbotcatcherbot
π Username: @lolsbotcatcherbot
βοΈ Rating: βοΈβοΈβοΈ (3.8/5 on 46 votes)
βββ
βΉοΈDescription: Multilingual AI powered antispam bot for groups. Does not require to set up any "bad words", forbid users to send messages with links and even scare users with the captcha. Has its own database of known spammers and scammers. Free to use regardless of group size.
π Languages: English Russian
π¬ Supports inline: no
π₯ Groups: yes
#οΈβ£ Tags: #antispam #group #admin #scam #spam #antiscam #antibot #tools
π Name: lolsbotcatcherbot
π Username: @lolsbotcatcherbot
βοΈ Rating: βοΈβοΈβοΈ (3.8/5 on 46 votes)
βββ
βΉοΈDescription: Multilingual AI powered antispam bot for groups. Does not require to set up any "bad words", forbid users to send messages with links and even scare users with the captcha. Has its own database of known spammers and scammers. Free to use regardless of group size.
π Languages: English Russian
π¬ Supports inline: no
π₯ Groups: yes
#οΈβ£ Tags: #antispam #group #admin #scam #spam #antiscam #antibot #tools
π€ New bot
π Name: artascii_bot
π Username: @artascii_bot
βοΈ Rating: βοΈβοΈβοΈ (3.9/5 on 89 votes)
βββ
βΉοΈDescription: Meet ASCII Bot, your friendly bot that brings back the nostalgic charm of ASCII art! Whether you're a retro tech enthusiast or just love unique digital text art, ASCII Bot is here to help.
π Languages: English
π¬ Supports inline: no
π₯ Groups: no
#οΈβ£ Tags: #asciibot #artbot #asciiartbot #design #textart #text3d
π Name: artascii_bot
π Username: @artascii_bot
βοΈ Rating: βοΈβοΈβοΈ (3.9/5 on 89 votes)
βββ
βΉοΈDescription: Meet ASCII Bot, your friendly bot that brings back the nostalgic charm of ASCII art! Whether you're a retro tech enthusiast or just love unique digital text art, ASCII Bot is here to help.
π Languages: English
π¬ Supports inline: no
π₯ Groups: no
#οΈβ£ Tags: #asciibot #artbot #asciiartbot #design #textart #text3d
Error when running script (Beginner)
Hello everyone,I'm very frustrated since I can't find anything useful on the internet, so I turned to this subreddit. I hope I'm at the correct place for this.I made a small template to check how to use the Telegram API (V21.6):import asynciofrom telegram import Updatefrom telegram.ext import CommandHandler, ApplicationBuilder, ContextTypesasync def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await context.bot.send_message(chat_id=update.effective_chat.id, text="Hello!")async def main() -> None: application = ApplicationBuilder().token('MY-TOKEN').build() application.add_handler(CommandHandler("start", start)) try: await application.run_polling() except Exception as E: passif __name__ == '__main__': try: asyncio.run(main()) except RuntimeError as RE: if "This event loop is already running" in str(RE): loop = asyncio.get_event_loop() loop.create_task(main()) else: passBut I get the following error message, when running the script:RuntimeWarning: coroutine 'Application.shutdown' was never awaited pass RunTimeWarning: Enable tracemalloc to get the object allocation tracebackRuntimeWarning: coroutine 'Application.initialize' was never awaited passRuntimeWarning: Enable tracemalloc to get the object allocation tracebackI tried multiple things but wasn't able to get it to run.Could someone maybe point me in the right direction? Thanks a lot!
Submitted September 29, 2024 at 01:57AM by Demand9614
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frrm2w/error_when_running_script_beginner/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hello everyone,I'm very frustrated since I can't find anything useful on the internet, so I turned to this subreddit. I hope I'm at the correct place for this.I made a small template to check how to use the Telegram API (V21.6):import asynciofrom telegram import Updatefrom telegram.ext import CommandHandler, ApplicationBuilder, ContextTypesasync def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await context.bot.send_message(chat_id=update.effective_chat.id, text="Hello!")async def main() -> None: application = ApplicationBuilder().token('MY-TOKEN').build() application.add_handler(CommandHandler("start", start)) try: await application.run_polling() except Exception as E: passif __name__ == '__main__': try: asyncio.run(main()) except RuntimeError as RE: if "This event loop is already running" in str(RE): loop = asyncio.get_event_loop() loop.create_task(main()) else: passBut I get the following error message, when running the script:RuntimeWarning: coroutine 'Application.shutdown' was never awaited pass RunTimeWarning: Enable tracemalloc to get the object allocation tracebackRuntimeWarning: coroutine 'Application.initialize' was never awaited passRuntimeWarning: Enable tracemalloc to get the object allocation tracebackI tried multiple things but wasn't able to get it to run.Could someone maybe point me in the right direction? Thanks a lot!
Submitted September 29, 2024 at 01:57AM by Demand9614
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frrm2w/error_when_running_script_beginner/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
How To Make a Leech and Mirror Bot
Hi can you please teach me how to make this kind of bot?
Submitted September 29, 2024 at 03:48AM by HumanPoetry6429
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frtn0p/how_to_make_a_leech_and_mirror_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hi can you please teach me how to make this kind of bot?
Submitted September 29, 2024 at 03:48AM by HumanPoetry6429
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frtn0p/how_to_make_a_leech_and_mirror_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Elon Musk
https://v.redd.it/imkiz1g1hprd1
Submitted September 29, 2024 at 10:05AM by Initial_Manner_6710
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frzgau/elon_musk/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/imkiz1g1hprd1
Submitted September 29, 2024 at 10:05AM by Initial_Manner_6710
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frzgau/elon_musk/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Reddit
From the TelegramBots community on Reddit: Elon Musk
Explore this post and more from the TelegramBots community
Elon Musk
https://v.redd.it/zguc56ikgprd1
Submitted September 29, 2024 at 10:03AM by Initial_Manner_6710
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frzf6d/elon_musk/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/zguc56ikgprd1
Submitted September 29, 2024 at 10:03AM by Initial_Manner_6710
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1frzf6d/elon_musk/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Reddit
From the TelegramBots community on Reddit: Elon Musk
Explore this post and more from the TelegramBots community
2228 groups and channels related to child abuse banned on September, 28.
Total this month: 53756
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 53756
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
206 terrorist bots and channels banned on September, 28.
Total this month: 8544
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 8544
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
βοΈ Looks like these bots have few ratings!
Try them and share your opinion, vote!
Try them and share your opinion, vote!
Cannot find my bots after creating with BotFather.
I donβt know if TG is having issues right now or what, but Iβve created 4 bots through BotFather, and not a single one can be found when I search the exact username of the bot. Is anyone else having this problem? I canβt do snything, Iβm just stuck until I figure out hard the matter.
Submitted September 29, 2024 at 04:10PM by DubaiInJuly
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fs5866/cannot_find_my_bots_after_creating_with_botfather/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I donβt know if TG is having issues right now or what, but Iβve created 4 bots through BotFather, and not a single one can be found when I search the exact username of the bot. Is anyone else having this problem? I canβt do snything, Iβm just stuck until I figure out hard the matter.
Submitted September 29, 2024 at 04:10PM by DubaiInJuly
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fs5866/cannot_find_my_bots_after_creating_with_botfather/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Lets trade
if you got mega, add me on telegram FBM500
Submitted September 29, 2024 at 04:44PM by TheHumbled100
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fs5yga/lets_trade/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
if you got mega, add me on telegram FBM500
Submitted September 29, 2024 at 04:44PM by TheHumbled100
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fs5yga/lets_trade/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Trade Link_s
I have mega links, if you got it, lets trade. Not settling for pics or single videos.
Submitted September 29, 2024 at 05:19PM by TheHumbled100
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fs6rmv/trade_link_s/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I have mega links, if you got it, lets trade. Not settling for pics or single videos.
Submitted September 29, 2024 at 05:19PM by TheHumbled100
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fs6rmv/trade_link_s/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
How to auto forward messages from a channel to my private group?
No text found
Submitted September 30, 2024 at 08:47AM by keirax3
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fspdug/how_to_auto_forward_messages_from_a_channel_to_my/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted September 30, 2024 at 08:47AM by keirax3
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fspdug/how_to_auto_forward_messages_from_a_channel_to_my/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Selling my bot and mini app
Hi guys!I built a telegram bot and mini app that helps you to find friends around your current location(Something like an advanced Leo match bot). A new user create account via the bot and then view list of people around his location on the mini app.I have over 200 users since I launched which is just last month without advertising. Due to my busy schedule I hardly get much time to market and also work on it.Revenue sources are telegram star subscription and ads on the mini app Iβm currently looking for someone who would buy and make the bot and mini app better.You can check the bot out by searching @LaurenFindAndMeetBotKindly dm if you are interested
Submitted September 30, 2024 at 08:28AM by Famous_Diamond_8639
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fsp4us/selling_my_bot_and_mini_app/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hi guys!I built a telegram bot and mini app that helps you to find friends around your current location(Something like an advanced Leo match bot). A new user create account via the bot and then view list of people around his location on the mini app.I have over 200 users since I launched which is just last month without advertising. Due to my busy schedule I hardly get much time to market and also work on it.Revenue sources are telegram star subscription and ads on the mini app Iβm currently looking for someone who would buy and make the bot and mini app better.You can check the bot out by searching @LaurenFindAndMeetBotKindly dm if you are interested
Submitted September 30, 2024 at 08:28AM by Famous_Diamond_8639
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fsp4us/selling_my_bot_and_mini_app/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Need help finding a dating bot to catch my cheater bf
Hey! I REALLY need to find a dating bot that i found on my bf's phone. It has a medium-long name, u can react with π or π (not heart emojis), probably has "tinder" or "telegram" in its name.I dont remember the bot icon but it (probably) has a pastel pink background and a letter with a heart, or something like that. I remember the chat interface, emojis and the name lenght, but im not sure about the icon. The chat looked pretty similar to @leomatchbot BUT the reacting emojis aren't the same Please help me ππ
Submitted September 30, 2024 at 09:24AM by Certain_Ad6931
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fspw3g/need_help_finding_a_dating_bot_to_catch_my/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hey! I REALLY need to find a dating bot that i found on my bf's phone. It has a medium-long name, u can react with π or π (not heart emojis), probably has "tinder" or "telegram" in its name.I dont remember the bot icon but it (probably) has a pastel pink background and a letter with a heart, or something like that. I remember the chat interface, emojis and the name lenght, but im not sure about the icon. The chat looked pretty similar to @leomatchbot BUT the reacting emojis aren't the same Please help me ππ
Submitted September 30, 2024 at 09:24AM by Certain_Ad6931
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1fspw3g/need_help_finding_a_dating_bot_to_catch_my/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
π Nicegram Giveaway Alert!
We're running a giveaway on X, and you donβt want to miss out! π
All the details are waiting for you over on X. Head there now and get involved!
π JOIN THE GIVEAWAY
Download Nicegram:
π AppStore | π GooglePlay
Join Chat:
π¬π§ EN Chat | π·πΊ RU Chat
Follow us:
βοΈ X | πΉ YouTube
Website | Features | Navigation
We're running a giveaway on X, and you donβt want to miss out! π
All the details are waiting for you over on X. Head there now and get involved!
π JOIN THE GIVEAWAY
Download Nicegram:
π AppStore | π GooglePlay
Join Chat:
π¬π§ EN Chat | π·πΊ RU Chat
Follow us:
βοΈ X | πΉ YouTube
Website | Features | Navigation
2027 groups and channels related to child abuse banned on September, 29.
Total this month: 55783
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 55783
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.