Giter VIP home page Giter VIP logo

Comments (5)

GivenFLY avatar GivenFLY commented on June 4, 2024 1

Just tested using the same version and same environment using this snippet, everything works

from telegram import Update
from telegram.ext import Application, MessageHandler, filters


async def download_voice(update, context) -> None:
    file_id = update.message.voice.file_id
    new_file = await context.bot.get_file(file_id)
    await new_file.download_to_drive()


def main() -> None:
    application = Application.builder().token("TOKEN").build()

    application.add_handler(MessageHandler(filters.VOICE, download_voice))

    application.run_polling(allowed_updates=Update.ALL_TYPES)


if __name__ == "__main__":
    main()

from python-telegram-bot.

Sp4g0 avatar Sp4g0 commented on June 4, 2024

i'll try tnx but documentation is not too clear https://github.com/python-telegram-bot/python-telegram-bot/wiki/Working-with-Files-and-Media

from python-telegram-bot.

Poolitzer avatar Poolitzer commented on June 4, 2024

@Sp4g0 How could it be improved to be more clear for you

from python-telegram-bot.

Sp4g0 avatar Sp4g0 commented on June 4, 2024

@Poolitzer I would like to have more examples, I have read all the documentation for get_file and download_to_drive. I also saw the code of the File class but it is not specified that the update is needed as in the example they provided in the previous comment. Thanks for the support.

from python-telegram-bot.

Poolitzer avatar Poolitzer commented on June 4, 2024

I would like to have more example

But you already linked to the wiki page, which already has the exact example helpfully written out above.

from python-telegram-bot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.