Telegram News / Beta / Unofficial Desktop Versions / Web / TG Bots / Subreddit / DMG by RTP [MacOS]
250 subscribers
1.78K photos
2.77K videos
1.14K files
20.1K links
Telegram Channel by @roadtopetabyte http://pixly.me/rtp - Announcements: @rtptme
Download Telegram
Does anyone have an age-verification bot?
I own an 18+ telegram channel and am looking for an age-verification bot before I open the channel. I would like it to use government-issued ID uploads as I need to be sure the 18+ rule is being followed. I looked into building this myself but i'm not a coder and it doesn't look easy. So if anyone can or has a bot like this already made I'd love to know!
Submitted August 07, 2024 at 08:54PM by MistressQuynn
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1emk3hd/does_anyone_have_an_ageverification_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
[c++] How to send a photo from photo using tgbot
Hey guys, everytime I try to use the sendPhoto function this text is displayed in the output window: error: ios_base::failbit set: iostream stream errorHere is my code:std::string photoFilePath = "exmaple.jpg";string photoMimeType = "image/jpeg";bot.getEvents().onCommand("start", [&bot, &kb_startMenu, &photoFilePath, &photoMimeType](Message::Ptr message) {bot.getApi().sendPhoto(message->chat->id, InputFile::fromFile(photoFilePath, photoMimeType)); });
Submitted August 08, 2024 at 05:15AM by RizzutoHD
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1emvk31/c_how_to_send_a_photo_from_photo_using_tgbot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
New to this...need a points bot.
I am not familiar with how these bots work but have my IT team working VERY slowly on one right now. That being said I wanted some input on how to go about finding a bot that would give member in my group "power points" if they post a picture of the gym, or if they post a comment that offers value, perhaps listing the daily goals as their first message of the day, more points for a daily Recap of the progress and take completed. Finally, it would need to deduct.points when we want it to and not only track the points but also display a leaderboard. There are more features we need but for now that is a big one. Can I buy this? Can a newborn make it? Is it already made somewhere I can copy?
Submitted August 08, 2024 at 08:26AM by TickleMeRaw69
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1emyugc/new_to_thisneed_a_points_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Do the OG telegram users remember the userbots era? Can we still build one for free?
Do you guys remember the huge userbot trend that was around 3-4 years ago?? So many people had so many userbots, ultroid, cat userbot, etc etc. Are any of them still possible to deploy on our accounts? for free???
Submitted August 08, 2024 at 09:51AM by zmyvisions
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1en04xo/do_the_og_telegram_users_remember_the_userbots/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
113 terrorist bots and channels banned on August, 7.
Total this month: 1345
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
1882 groups and channels related to child abuse banned on August, 7.
Total this month: 12572
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
The person who is lucky enough....
It's late...im feeling generous.....and im drunk....I don't even know if this will post as I haven't read the directions regarding postsThat being said....if you know how to develop telegram bots....and / or develop apps and programs.....I have an opportunity to share with you. I can guarantee you will want to reply to this and get on the phone with me to learn more.I doubt anyone will....but it will be fun looking back knowing I posted this life changing offer and gave someone the chance to....almsot effortlessly be told more info. If someone does reach out.....what a crazy story to tell in the future when someone asks how you found out about this. That being said, if your going to reach out I would highly advise you to make your first message something to remember with the very likely expectation in mind that it very well may be seen by everyone some day.....maybe turn it into a NFT idfk.Don't say drunk me didn't warn you.Just one question, if I asked you what the most popular men's podcast in the world was....would.you be able to answer me correctly? If you answer correctly.....you will understand this post alot more than everyone else. This post will be deleted forever in......lets do.....in 24 hours...but only after screen shotting and framing on the wall.... as proof....i guarantee in a few tears no one will beleive I posted it here. Hopefully my boss doesn't see this before then or I'm fucked........damn near like leaving a gold brick outside.
Submitted August 08, 2024 at 11:00AM by TickleMeRaw69
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1en149m/the_person_who_is_lucky_enough/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
needed with keyword recognition and extraction in my Telegram bot
Hello everyone, I am developing a Telegram bot using Python and am facing challenges with keyword recognition and extraction functionality. Despite trying multiple approaches, I'm unable to achieve the desired accuracy and performance. Here’s a detailed description of my problem:
**What I've tried so far:**
- Basic string matching
- Using regular expressions
- Implementing NLP libraries like spaCy and NLTK **Problems:**
- Inconsistent recognition of keywords
- Performance issues with larger datasets Questions:What are the best practices for keyword recognition and extraction in Telegram bots?Are there any libraries or tools specifically designed for this purpose?Could someone provide a working example or point me to relevant resources?Any help or guidance would be greatly appreciated!**Here is my current code:** ```python # Example from handlers.py: import re # Importing the module for working with regular expressionsimport difflib # Importing the module for sequence comparisonimport spacy # Importing the spaCy library for natural language processingimport nltk # Importing the NLTK library for natural language processingfrom fuzzywuzzy import fuzz # Importing the module for fuzzy string matchingfrom nltk.corpus import stopwords # Importing the list of stop words from NLTKfrom nltk.stem import WordNetLemmatizer # Importing the lemmatizer from NLTKfrom telebot import types # Importing the types module from the telebot library for creating buttonsimport config # Importing the config file containing settingsimport time # Importing the module for working with timefrom button_functions import send_buttons # Importing the function for sending buttonsfrom buttons import ( # Importing functions for sending various buttonssend_calculators_buttons,send_loan_buttons,send_sub_buttons_hipotek,send_sub_buttons_grav,send_sub_buttons_acra,)import logging # Importing the module for loggingfrom config import button_phrases # Importing button phrases from config# Loading NLTK resourcesnltk.download('punkt') # Downloading the tokenizer from NLTKnltk.download('stopwords') # Downloading the stop words from NLTKnltk.download('wordnet') # Downloading the WordNet lemmatizer from NLTK# Loading spaCy modelsnlp_en = spacy.load("en_core_web_sm") # Loading the model for Englishnlp_ru = spacy.load("ru_core_news_sm") # Loading the model for Russian# nlp_hy = spacy.load("hy_core_news_sm") # Loading the model for Armenian# Initializing the lemmatizer and the list of stop wordslemmatizer = WordNetLemmatizer() # Initializing the lemmatizerstop_words = set(stopwords.words('english')).union(set(stopwords.words('russian'))).union(set(config.conjunctions)) # Combining the lists of stop words for English, Russian, and conjunctionsdef normalize_text(text, lang='en'): # Defining the function for normalizing texttext = re.sub(r'[^ws]', '', text) # Removing all characters except letters and spaces using a regular expressionlogging.info(f"Text after regex cleaning: {text}") # Logging the text after removing characters# Removing conjunctions from the textwords = text.split() # Splitting the text into individual wordswords = [word for word in words if word not in config.conjunctions] # Removing all conjunctions from the text using the list of conjunctions from the config filetext = ' '.join(words) # Joining the remaining words back into a text stringlogging.info(f"Text after removing conjunctions: {text}") # Logging the text after removing conjunctionsif lang == 'ru': # If the language of the text is Russiandoc = nlp_ru(text) # Processing the text with the Russian language modelelif lang == 'hy': # If the language of the text is Armeniandoc = text.split() # Simple example of text processing for Armenianelse: # If the language of the text is Englishdoc = nlp_en(text) # Processing the text with the English language modelif lang == 'hy': # If the language of the text is Armeniannormalized_tokens = [token.lower() for token in doc if not re.match(r'W', token)]…
Apple Music Bot
Is it possible to make a bot that downloads Dolby from Apple Music? If so, could someone make one please?
Submitted August 08, 2024 at 01:26PM by GalaxyRager
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1en3gdv/apple_music_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Forwarded from Telegram Tips
This media is not supported in your browser
VIEW IN TELEGRAM
Telegram Browser. Pages you open with the in-app browser can be collapsed and reopened – including websites, instant view articles and mini apps.

The browser also supports decentralized websites hosted on TON, making them accessible from all Telegram mobile and desktop apps.

You can bookmark any site for later browser – instantly adding it to your Saved Messages.
🤖 New bot
📋 Name: BSv2Bot
🆔 Username: @BSv2Bot
⭐️ Rating: ⭐️⭐️⭐️ (3.5/5 on 41 votes)

ℹ️Description: Bastion Siege is a game about the harsh Middle Ages and something like that.
🌐 Languages: Russian English
💬 Supports inline: no
👥 Groups: no
#️⃣ Tags: #game
🤖 New bot
📋 Name: easy_accountant_bot
🆔 Username: @easy_accountant_bot
⭐️ Rating: ⭐️⭐️⭐️⭐️ (4/5 on 145 votes)

ℹ️Description: Savvy Money Finance Control Bot helps you effortlessly manage expenses, incomes, and savings. Track spending, log incomes, and stay updated on your balance. Predict your financial future with forecasted balances and expenses.
🌐 Languages: English Ukrainian
💬 Supports inline: no
👥 Groups: no
#️⃣ Tags: #finance #expenses #income #savings #budgeting #money #personalfinance #expensemanager #incometracker #savingsplanner #spendingtracker #financialplanning #budgettracker #financialbot #financialassistant
This media is not supported in your browser
VIEW IN TELEGRAM
💸 In-Chat Crypto Transfers with Nicegram Wallet

Experience swift, in-chat cryptocurrency transfers to your Nicegram contacts, facilitated by the seamless integration of the Nicegram Wallet with your account.

📤 To Send Crypto:
Open the chat -> Tap the wallet icon -> Enter the passcode -> Go to the 'Send' section -> Add the transaction details -> Confirm the transaction.

📥 To Receive Crypto:
Open the chat -> Tap the wallet icon -> Enter the passcode -> Go to the 'Receive' section -> Select the token you want to receive -> Follow the provided instructions.

Start sending crypto in chats now!
Forwarded from Tips de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Navegador de Telegram. Las páginas que abres con el navegador en la app se pueden contraer y reabrir, incluyendo sitios web, artículos de vista rápida y mini apps.

El navegador también es compatible con sitios web descentralizados alojados en TON, haciéndolos accesibles desde todas las apps de Telegram, tanto móviles como de escritorio.

Puedes marcar cualquier sitio para revisarlo después, añadiéndolo al instante a tus mensajes guardados.
AI Girlfriend & partner
Just found a bot which is an interactive robot-girl that serves as an AI partner...
Submitted August 08, 2024 at 05:34PM by Dear_Literature4351
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1en9375/ai_girlfriend_partner/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Forwarded from Suggerimenti di Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Browser Telegram. Le pagine che apri nel browser in-app possono essere compresse e riaperte, inclusi gli articoli con apertura rapida e le mini app.

Il browser supporta anche i siti web decentralizzati ospitati su TON, rendendoli accessibili da tutte le app mobile e desktop di Telegram.

Puoi aggiungere qualunque sito ai segnalibri per aprirlo in seguito, aggiungendolo istantaneamente ai Messaggi salvati.
Trading links dm for telegram str no ba no buying
No text found
Submitted August 08, 2024 at 08:35PM by Lumpy_Following_6248
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1endn8p/trading_links_dm_for_telegram_str_no_ba_no_buying/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
My friend found a bot that regenerates v2ray configs bit won't tell me what its called...
Anyone know which bot im talking about? Can u drop the @ please?
Submitted August 09, 2024 at 12:12AM by ChxmpR6
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1enixb5/my_friend_found_a_bot_that_regenerates_v2ray/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
🆕 Nicegram New Update for iOS

We're excited to bring you the latest Nicegram updates!

Here’s what’s new:

🔸 Telegram Update 10.15.1: Experience the latest Telegram features, now fully integrated into Nicegram for a smoother experience.
🔸 Wallet Swap via 1inch Partnership: Swap EVM blockchain tokens directly in your Nicegram Wallet at reduced fees, thanks to our collaboration with 1inch.
🔸 Multiwallet Support: Create as many wallets as you need, each a fortress enhancing your privacy and security.
🔸 Log in with Wallet: From now on, your wallet can be the key to unlocking Nicegram Assistant, even if your Telegram account is out of reach.
🔸 Bug Fixes: We've eliminated bugs to improve your overall experience.

UPDATE NOW

🛒 AppStore

#nicegramupdate
1742 groups and channels related to child abuse banned on August, 8.
Total this month: 14314
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.