2219 groups and channels related to child abuse banned on July, 11.
Total this month: 21547
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 21547
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
521 terrorist bots and channels banned on July, 11.
Total this month: 3691
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 3691
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Apk comverter
Any bot for changing APK files ios/iphones..
Submitted July 12, 2023 at 01:28PM by BazookaBoomBap
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14xlvib/apk_comverter/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Any bot for changing APK files ios/iphones..
Submitted July 12, 2023 at 01:28PM by BazookaBoomBap
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14xlvib/apk_comverter/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
❤️ A milestone has been reached - our Nicegram channel has hit the incredible 200,000 subscriber mark! 🎉🎉
We are beyond grateful for your continual support and participation 🫂
Thank you for making #Nicegram a vibrant and engaging community! 💜
We are beyond grateful for your continual support and participation 🫂
Thank you for making #Nicegram a vibrant and engaging community! 💜
2046 groups and channels related to child abuse banned on July, 12.
Total this month: 23593
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 23593
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
620 terrorist bots and channels banned on July, 12.
Total this month: 4311
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 4311
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Please give us feedback on our project, Telesite.io!
Telesite.io is an advanced mobile website builder designed to meet the needs of modern users. We strive to provide a tool that allows for easy and fast creation of elegant and responsive mobile websites.But Telesite.io is more than just a mobile website builder. We also offer the ability to create attractive and interactive Telegram bots that stand out with their beautiful design and functionality.Tidy websites for Telegram botsWe would love to hear your thoughts on the project. How do you rate our concept and implementation of the mobile website builder and Telegram bots? What features or capabilities do you think are most important for the further development of Telesite.io? Your ideas and suggestions will help us make our product even better and more useful for our users.We appreciate if you could share your thoughts and help us promote and enhance Telesite.io. Thank you in advance for your valuable feedback and active participation in the development of our project!
Submitted July 13, 2023 at 12:10PM by Ok-Village-1244
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14ygs19/please_give_us_feedback_on_our_project_telesiteio/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telesite.io is an advanced mobile website builder designed to meet the needs of modern users. We strive to provide a tool that allows for easy and fast creation of elegant and responsive mobile websites.But Telesite.io is more than just a mobile website builder. We also offer the ability to create attractive and interactive Telegram bots that stand out with their beautiful design and functionality.Tidy websites for Telegram botsWe would love to hear your thoughts on the project. How do you rate our concept and implementation of the mobile website builder and Telegram bots? What features or capabilities do you think are most important for the further development of Telesite.io? Your ideas and suggestions will help us make our product even better and more useful for our users.We appreciate if you could share your thoughts and help us promote and enhance Telesite.io. Thank you in advance for your valuable feedback and active participation in the development of our project!
Submitted July 13, 2023 at 12:10PM by Ok-Village-1244
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14ygs19/please_give_us_feedback_on_our_project_telesiteio/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
❤️ Channels & Groups «Limit Reached» Bug Fix on Android!
⚙️ We have resolved the issue where some users encountered the "Limit Reached" error while joining new groups or channels on Android.
Rest assured, there is no limit to the number of channels and groups you can join. If you encounter this problem, follow these simple steps:
1️⃣ Ensure you have Nicegram version 1.17.3 or above installed.
2️⃣ Go to Settings → Select Edit → Log Out.
3️⃣ Log back in to your account.
P.S. While this solution has proven effective for many, please note that individual results may vary.
Keep your Nicegram app up to date for the best user experience, allowing you to connect and engage without limitations! 🤝
⚙️ We have resolved the issue where some users encountered the "Limit Reached" error while joining new groups or channels on Android.
Rest assured, there is no limit to the number of channels and groups you can join. If you encounter this problem, follow these simple steps:
1️⃣ Ensure you have Nicegram version 1.17.3 or above installed.
2️⃣ Go to Settings → Select Edit → Log Out.
3️⃣ Log back in to your account.
P.S. While this solution has proven effective for many, please note that individual results may vary.
Keep your Nicegram app up to date for the best user experience, allowing you to connect and engage without limitations! 🤝
How to add a name of the profile to the table profiles_adjust for the certain user?
class User(Base): tablename = 'users'id: Mapped[int] = mapped_column(Integer, autoincrement=True, primary_key=True)tg_id: Mapped[int] = mapped_column(BigInteger, unique=True)username: Mapped[Optional[str]] = mapped_column(String)first_name: Mapped[Optional[str]] = mapped_column(String)prof_adj: Mapped['ProfAdjust'] = relationship(back_populates='user')class ProfAdjust(Base): tablename = 'profiles_adjust'id: Mapped[int] = mapped_column(Integer, autoincrement=True, primary_key=True)user_id: Mapped[int] = mapped_column(ForeignKey('users.id'), unique=True)# todo photo_id: Mapped[Optional[int]] = mapped_column(Integer)name: Mapped[Optional[str]] = mapped_column(String(50))descr: Mapped[Optional[str]] = mapped_column(String(824))user: Mapped['User'] = relationship(back_populates='prof_adj')# todo geo: Mapped[Optional[str]] = mapped_column()
Submitted July 13, 2023 at 05:12PM by Karandax
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14ynhie/how_to_add_a_name_of_the_profile_to_the_table/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
class User(Base): tablename = 'users'id: Mapped[int] = mapped_column(Integer, autoincrement=True, primary_key=True)tg_id: Mapped[int] = mapped_column(BigInteger, unique=True)username: Mapped[Optional[str]] = mapped_column(String)first_name: Mapped[Optional[str]] = mapped_column(String)prof_adj: Mapped['ProfAdjust'] = relationship(back_populates='user')class ProfAdjust(Base): tablename = 'profiles_adjust'id: Mapped[int] = mapped_column(Integer, autoincrement=True, primary_key=True)user_id: Mapped[int] = mapped_column(ForeignKey('users.id'), unique=True)# todo photo_id: Mapped[Optional[int]] = mapped_column(Integer)name: Mapped[Optional[str]] = mapped_column(String(50))descr: Mapped[Optional[str]] = mapped_column(String(824))user: Mapped['User'] = relationship(back_populates='prof_adj')# todo geo: Mapped[Optional[str]] = mapped_column()
Submitted July 13, 2023 at 05:12PM by Karandax
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14ynhie/how_to_add_a_name_of_the_profile_to_the_table/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I made Family Tree Bot for telegram
It makes family tree like discord marriagebotbot's username : @ fam_tree_bot And support group @ fam_treeBot can't really handle heavy load but more users are very much welcome. I want it to be in more groups.You have to add it in a group, then reply with commands to user and make trees!https://preview.redd.it/2jneptgcmrbb1.png?width=1893&format=png&auto=webp&s=ea1c445d592a906e9c35634eae6aff2e8f26295a
Submitted July 13, 2023 at 07:18PM by Whiispard
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14yqora/i_made_family_tree_bot_for_telegram/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
It makes family tree like discord marriagebotbot's username : @ fam_tree_bot And support group @ fam_treeBot can't really handle heavy load but more users are very much welcome. I want it to be in more groups.You have to add it in a group, then reply with commands to user and make trees!https://preview.redd.it/2jneptgcmrbb1.png?width=1893&format=png&auto=webp&s=ea1c445d592a906e9c35634eae6aff2e8f26295a
Submitted July 13, 2023 at 07:18PM by Whiispard
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14yqora/i_made_family_tree_bot_for_telegram/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
TRADING MEGA AND DROPBOX LINKS DM S2R ONLY
No text found
Submitted July 13, 2023 at 11:27PM by Due_Pair_4560
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14yx25a/trading_mega_and_dropbox_links_dm_s2r_only/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted July 13, 2023 at 11:27PM by Due_Pair_4560
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14yx25a/trading_mega_and_dropbox_links_dm_s2r_only/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Download temu and refer your friends for free 50$
Upvote i also need karma Link in comments
Submitted July 14, 2023 at 05:26AM by Lumpy-Impact-5970
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14z51eb/download_temu_and_refer_your_friends_for_free_50/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Upvote i also need karma Link in comments
Submitted July 14, 2023 at 05:26AM by Lumpy-Impact-5970
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14z51eb/download_temu_and_refer_your_friends_for_free_50/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
1741 groups and channels related to child abuse banned on July, 13.
Total this month: 25334
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 25334
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
306 terrorist bots and channels banned on July, 13.
Total this month: 4617
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 4617
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Cloth Off Bot
Put a picture of a crush or just any person through this bot and watch it remove all their clotheshttps://clothoff.net/?referrerUid=cljgcr6bh06bont3npd9izu5k
Submitted July 14, 2023 at 12:42PM by Thenoodleplays
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zd086/cloth_off_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Put a picture of a crush or just any person through this bot and watch it remove all their clotheshttps://clothoff.net/?referrerUid=cljgcr6bh06bont3npd9izu5k
Submitted July 14, 2023 at 12:42PM by Thenoodleplays
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zd086/cloth_off_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I look for an amazing bot
I found a bot which can send a private message to a user who requested to join a private channel! Before he even got accepted by the channel!Do you know how is it possible?
Submitted July 14, 2023 at 01:23PM by Puzzleheaded_King307
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zdsme/i_look_for_an_amazing_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I found a bot which can send a private message to a user who requested to join a private channel! Before he even got accepted by the channel!Do you know how is it possible?
Submitted July 14, 2023 at 01:23PM by Puzzleheaded_King307
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zdsme/i_look_for_an_amazing_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
S2r megas
No text found
Submitted July 14, 2023 at 05:43PM by Impressive_Court_766
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zju08/s2r_megas/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted July 14, 2023 at 05:43PM by Impressive_Court_766
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zju08/s2r_megas/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Can anyone recommend a store bot with crypto payments?
Hi I’m struggling to find a store bot that accepts crypto payments can you help me out? Is this something you can get ready made or need to program?
Submitted July 14, 2023 at 06:58PM by laylaoitside
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zlrg5/can_anyone_recommend_a_store_bot_with_crypto/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hi I’m struggling to find a store bot that accepts crypto payments can you help me out? Is this something you can get ready made or need to program?
Submitted July 14, 2023 at 06:58PM by laylaoitside
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zlrg5/can_anyone_recommend_a_store_bot_with_crypto/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Does API limit all messages sent by the bot to 30/s or just bulk messages?
Hi All!I want to develop a telegram bot. I guess it will have a large userbase and each user may sent near 100 messages to the bot and receive near 100 in each day. However, based on my calculation, if there is a limit of 30 message per second, my bot cannot have more than 30*3600*24/100 ~= 30000 users? I am wondering also callbacks from pushing buttons is counted? Also, do these limits just only apply to when I want to send bulk messages that are copy of each other or it is just a rate limit on how many messages a bot can send in overall?
Submitted July 14, 2023 at 09:57PM by Sufficient_Eagle_209
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zqe0z/does_api_limit_all_messages_sent_by_the_bot_to/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hi All!I want to develop a telegram bot. I guess it will have a large userbase and each user may sent near 100 messages to the bot and receive near 100 in each day. However, based on my calculation, if there is a limit of 30 message per second, my bot cannot have more than 30*3600*24/100 ~= 30000 users? I am wondering also callbacks from pushing buttons is counted? Also, do these limits just only apply to when I want to send bulk messages that are copy of each other or it is just a rate limit on how many messages a bot can send in overall?
Submitted July 14, 2023 at 09:57PM by Sufficient_Eagle_209
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zqe0z/does_api_limit_all_messages_sent_by_the_bot_to/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
mega trade, nl, no bs, just s2r
No text found
Submitted July 15, 2023 at 12:54AM by jospurs6
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zutmk/mega_trade_nl_no_bs_just_s2r/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted July 15, 2023 at 12:54AM by jospurs6
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zutmk/mega_trade_nl_no_bs_just_s2r/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hmu if u want megas got tons (y g rpe, Omegle) S2R only
No text found
Submitted July 15, 2023 at 12:36AM by Impressive_Pair_4408
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zuf8k/hmu_if_u_want_megas_got_tons_y_g_rpe_omegle_s2r/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted July 15, 2023 at 12:36AM by Impressive_Pair_4408
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/14zuf8k/hmu_if_u_want_megas_got_tons_y_g_rpe_omegle_s2r/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme