Software Alternatives & Reviews

Voice to Text telegram bot

Python Poetry Telegram bot API
  1. Python packaging and dependency manager.
    Pricing:
    • Open Source
    We're gonna build the telegram bot, which would be able to patiently listen to the message that was sent to you and then just return you beautiful, pure text, the one that we all love so much. Ok, so if it's a speech recognition task, this means neural networks (there are of course available APIs, but we don't want to send our private messages to someone like Google). If it's neural networks - then we think Python. Actually, we won't train our own network, so we would be able to in fact be done with most other programming languages, but Python just feels more natural tool of choice for this task. We will start by initializing a new project (I'll be using poetry as a virtual environment and dependency management tool).

    #Kids #Front End Package Manager #Package Manager 144 social mentions

  2. The Bot API allows you to easily create programs that use Telegram messages for an interface.
    Pricing:
    • Open Source
    We'll create a class Bot, which will be the core of our program (that's unsurprising, considering we're writing the telegram bot). During its instantiation, it will read the token from your telegram bot (to learn how to register one go here) and build a basic bot app. Along with this, we're gonna add two async methods to our class, which will serve as message handlers (functions that are invoked when a specific message is received), one for video notes and one for audio. And the last, but not least start method, which is responsible for registering the message handlers and basically starting our bot. In the end, since it's our main.py file we'll add a couple of lines to invoke this bot and start the app when the script is running.

    #Chatbots #Chatbot Platforms & Tools #Live Chat 24 social mentions

Discuss: Voice to Text telegram bot

Log in or Post with