download_media()¶
-
Client.download_media()¶ Download the media from a message.
- Parameters
message (
Message|str) – Pass a Message containing the media, the media itself (message.audio, message.video, …) or the file id as string.file_ref (
str, optional) – A valid file reference obtained by a recently fetched media message. To be used in combination with a file id in case a file reference is needed.file_name (
str, optional) – A custom file_name to be used instead of the one provided by Telegram. By default, all files are downloaded in the downloads folder in your working directory. You can also specify a path for downloading files in a custom location: paths that end with “/” are considered directories. All non-existent folders will be created automatically.block (
bool, optional) – Blocks the code execution until the file has been downloaded. Defaults to True.progress (
callable, optional) – Pass a callback function to view the file transmission progress. The function must take (current, total) as positional arguments (look at Other Parameters below for a detailed description) and will be called back each time a new file chunk has been successfully transmitted.progress_args (
tuple, optional) – Extra custom arguments for the progress callback function. You can pass anything you need to be available in the progress callback scope; for example, a Message object or a Client instance in order to edit the message with the updated progress status.
- Other Parameters
current (
int) – The amount of bytes transmitted so far.total (
int) – The total size of the file.*args (
tuple, optional) – Extra custom arguments as defined in theprogress_argsparameter. You can either keep*argsor add every single extra argument in your function signature.
- Returns
str|None– On success, the absolute path of the downloaded file is returned, otherwise, in case the download failed or was deliberately stopped withstop_transmission(), None is returned.- Raises
ValueError – if the message doesn’t contain any downloadable media
Example
# Download from Message app.download_media(message) # Download from file id app.download_media("CAADBAADzg4AAvLQYAEz_x2EOgdRwBYE") # Keep track of the progress while downloading def progress(current, total): print(f"{current * 100 / total:.1f}%") app.download_media(message, progress=progress)