From 574c4457cf056de20186bec84b4052ec529763f7 Mon Sep 17 00:00:00 2001 From: Poolitzer Date: Tue, 21 Feb 2023 17:05:56 +0100 Subject: [PATCH] wupps --- Working-with-Files-and-Media.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-with-Files-and-Media.md b/Working-with-Files-and-Media.md index 6ba9100..73b2d13 100644 --- a/Working-with-Files-and-Media.md +++ b/Working-with-Files-and-Media.md @@ -43,7 +43,7 @@ Let's have a look at how sending a document can be done. In these examples, we'l ``` When you pass a file path (note that both `str` and [`pathlib.Path`](https://docs.python.org/3/library/pathlib.html#pathlib.Path) are accepted as [`document`](https://python-telegram-bot.readthedocs.io/telegram.bot.html#telegram.Bot.send_document.params.document) parameter), PTB will automatically check if your bot is running in [local mode](https://github.com/python-telegram-bot/python-telegram-bot/wiki/Local-Bot-API-Server#how-to-use-a-local-bot-api-server-with-ptb). If it is, the file does not need to be uploaded. Otherwise, the file is read in binary mode, so just as when you pass `open('tests/test.png', 'rb')`. -2. Sending an HTTP URLrefreshing-at-runtime +2. Sending an HTTP URL ```python await bot.send_document(chat_id=chat_id, document='https://python-telegram-bot.org/static/testfiles/telegram.gif')