tgbox package
tgbox.api.local module
Module with API functions and classes for LocalBox.
- class tgbox.api.local.DecryptedLocalBox(elb: EncryptedLocalBox, key: BaseKey | MainKey)
Bases:
EncryptedLocalBoxClass that represents decrypted local box. On more low-level it’s wrapper around
TgboxDBthat decrypts and parses every row. You don’t need to work withEncryptedLocalBoxto write any data to theTgboxDB. Every commit will be encrypted here.Typical usage:
- property api_hash: str | None
Returns API_HASH.
- property api_id: int | None
Returns API_ID.
- property box_channel_id: bytes | int | None
Returns encrypted channel ID from
EncryptedLocalBoxand decrypted fromDecryptedLocalBox.
- property box_cr_time: bytes | int | None
Returns encrypted box creation time from
EncryptedLocalBoxand decrypted fromDecryptedLocalBox.
- property box_salt: bytes | None
Returns BoxSalt or
Noneif not initialized
- async contents(sfpid: bytes | None = None, ignore_files: bool | None = False) AsyncGenerator[EncryptedLocalBoxDirectory | DecryptedLocalBoxDirectory, None]
Recursive iterate over all files/folders in LocalBox.
- Arguments:
- sfpid (
bytes, optional): Will start from this PartID if specified, else will start from “root” PIDs.
- ignore_files (
bool, optional): Will not return LocalBoxFile associated with the LocalBoxDirectory if
False.
- sfpid (
- async static decrypt() NoReturn
Will return
DecryptedLocalBox.You should specify
BaseKeyif you want to access session and use this dlb with RemoteBox, however, you can specifyMainKeyif you only want to iterate over local files / fetch basic local info.
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Returns
DefaultsTableWrapperorRemoteBoxDefaults.
- async delete() None
This method WILL DELETE your LocalBox database. It doesn’t affect RemoteBox, so you can make new LocalBox from the Remote version if you have MainKey.
Will raise
FileNotFoundErrorif something goes wrong (i.e DB was moved).
- async delete_files(*lbf: 'EncryptedLocalBoxFile' | 'DecryptedLocalBoxFile', lbf_ids: list | None = None, rb: 'tgbox.api.remote.EncryptedRemoteBox' | 'tgbox.api.remote.DecryptedRemoteBox' | None = None) None
A function to remove a bunch of local files at once.
- Arguments:
- lbf (
EncryptedLocalBoxFile,DecryptedLocalBoxFile, asterisk): (Encrypted|Decrypted)LocalBoxFile(s)to remove.- lbf_ids (
list, optional): You can specify ids instead of LocalBox file objects. However,
lbfis preferred here.- rb (
EncryptedRemoteBox,DecryptedRemoteBox, optional): You can specify a RemoteBox associated with current LocalBox to also remove all specified files in RemoteBox too.
- lbf (
Note
Without
rbthis will delete files only from your LocalBox. To completly remove your file use the same coroutine on RemoteBox or specify(Encrypted|Decrypted)RemoteBox.
- async done()
Await this method when you end all work with LocalBox, so we will clean up & close connections.
- async files(cache_preview: bool = True, min_id: int | None = None, max_id: int | None = None, ids: int | list | None = None) 'DecryptedLocalBoxFile' | 'EncryptedLocalBoxFile' | None
Yields every local file as
EncryptedLocalBoxFileif you call it onEncryptedLocalBoxandDecryptedLocalBoxFileif onDecryptedLocalBox. Works viaself.get_fileAlternatively, you may use LocalBox.contents method.
- Arguments:
- cache_preview (
bool, optional): Cache preview in class or not.
- min_id (
bool, optional): Will iterate from this ID.
- max_id (
bool, optional): Will iterate up to this ID.
- ids (
int,list, optional): ID or list with IDs you want to fetch. If specified, The min_id and max_id args will be ignored
- cache_preview (
- async get_directory(path: Path | str) DecryptedLocalBoxDirectory | None
This method will make
DecryptedLocalBoxDirectoryfrom yourpath. If such path is not presented in LocalBox, thenNonewill be returned.- Arguments:
- path (
Path,str): Absolute path from which you want to make an
DecryptedLocalBoxDirectory.
- path (
- async get_file(id: int, decrypt: bool = True, cache_preview: bool = True) DecryptedLocalBoxFile | EncryptedLocalBoxFile | None
Returns
EncryptedLocalBoxFilefromEncryptedLocalBoxorDecryptedLocalBoxFilefromDecryptedLocalBoxif file exists.Noneotherwise.- Arguments:
- id (
int): File ID.
- decrypt (
bool, optional): Force return EncryptedLocalBoxFile
- cache_preview (
bool, optional): Cache preview in class or not.
- id (
- async get_last_file_id() int
Returns last file id from the FILES table. If there is no files at all, will return 0.
- get_requestkey(basekey: BaseKey) RequestKey
Returns
RequestKeyfor this LocalBox. You should use this method if you want to decrypt other’sRemoteBox.- Arguments:
- basekey (
BaseKey): To make a
RequestKeyfor other’sRemoteBoxyou need to create newBaseKeyfor it. Later this key will be used for Box decryption.
- basekey (
Returns
ShareKeyfor this Box. You should use this method if you want to share your LocalBox with other people.- Arguments:
- reqkey (
RequestKey, optional): Other’s
RequestKey. If isn’t specified returnsImportKeyof this box without encryption, so anyone with this key can decrypt ALL files in your Boxes.
- reqkey (
- async import_file(drbf: tgbox.api.remote.DecryptedRemoteBoxFile, file_path: str | Path | None = None) DecryptedLocalBoxFile
Imports file to your
DecryptedLocalBox- Arguments:
- drbf (
DecryptedRemoteBoxFile): Remote file you want to import.
- file_path (
Path, optional): File’s path. Will be used
drbf._file_pathifNoneand if drbf was decrypted with theMainKey, otherwiseself.defaults.DEF_NO_FOLDER.This method will call a
set_file_path(file_path)on the specified drbf iffile_pathisn’t aNone.You can change drbf
file_pathwithset_file_pathmethod before importing file, so you don’t need to specify it here.
- drbf (
- async static init() NoReturn
Will fetch and parse data from Database.
- property initialized: bool
Returns
Trueif you called.init()
- async prepare_file(file: BinaryIO | bytes | TelegramVirtualFile, file_size: int | None = None, file_path: Path | None = None, cattrs: Dict[str, bytes] | None = None, make_preview: bool = True) PreparedFile
Prepares your file for
RemoteBox.push_file- Arguments:
- file (
BinaryIO,bytes,TelegramVirtualFile): filedata to add to the LocalBox. In most cases it’s just opened file. If you want to upload something else, then you need to implement class that haveread&namemethods.The method needs to know size of the
file, so it will try to ask system what size of file on pathfile.name. If it’s impossible, then method tries to seek file to EOF, if file isn’t seekable, then we try to get size bylen()(as__len__dunder). If all fails, method tries to getfile.read())(with load to RAM).Abs file path length must be <=
self.defaults.FILE_PATH_MAX; If file has nonameandfile_pathis not specified then it will beNO_FOLDER/{prbg(6).hex()}.- file_size (
int, optional): Bytelength of
file. You can specify it if you already know file size.- file_path (
Path, optional): File path. You can specify here path that isn’t exists. If not specified, will be used path from the
BinaryIO, if file is not aBinaryIOthen will be used aself.defaults.DEF_NO_FOLDER.Must be <=
self.defaults.FILE_PATH_MAX.- cattrs (
Dict[str, Union[bytes, None]], optional): The file’s custom metadata attributes that will be added to the main metadata. Specified dict will be packed with the PackedAttributes.
Please note that after some operations we will create a file metadata. Its limit defined as
self.defaults.METADATA_MAX. You shouldn’t overflow this number plus size of default metadata; other is up to you.- make_preview (
bool, optional): Will try to add file preview to the metadata if
True(default).
- file (
- async replace_session(basekey: BaseKey, tc: TelegramClient) None
This method will replace LocalBox session to session of specified
TelegramClient.- Arguments:
- basekey (
BaseKey): BaseKeyof this LocalBox.- tc (
TelegramClient): TelegramClientfrom which we will extract new session.
- basekey (
- async search_file(sf: SearchFilter, cache_preview: bool = True) AsyncGenerator[DecryptedLocalBoxFile, None]
This method used to search for files in your
DecryptedLocalBox.- Arguments:
- sf (
SearchFilter): SearchFilterwith kwargs you like.- cache_preview (
bool, optional): Will cache preview in file object if
True.
- sf (
- property session: bytes | str | None
Returns encrypted session from
EncryptedLocalBoxand decrypted fromDecryptedLocalBox.
- async sync(drb: tgbox.api.remote.DecryptedRemoteBox, deep: bool | None = False, start_from: int | None = 0, timeout: int | None = 15, deep_progress_callback: Callable[[int, int], None] | None = None, fast_progress_callback: Callable[[int, str], None] | None = None)
This method will synchronize your LocalBox with RemoteBox. All files that not in RemoteBox but in Local will be removed, all that in Remote but not in LocalBox will be imported.
- drb (
DecryptedRemoteBox): RemoteBox associated with this LocalBox.
- deep (
bool, optional): Flag to enable a “deep syncing”.
- start_from (
int, optional): Will check files that > start_from [ID]. Will be used only on deep syncing.
- timeout (
int, optional): How many seconds generator will sleep at every 1000 file. By default it’s 15 seconds. Don’t use too low timeouts or you will receive FloodWaitError. Will be used only on Deep Sync, Fast Sync will ignore this argument.
- deep_progress_callback (
Callable[[int, int], None], optional): A callback function accepting two parameters: (current_id, last_id). Will be used only on deep syncing.
- fast_progress_callback (
Callable[[int, str], None], optional): A callback function accepting two parameters: (file_id, action<str>). Will be used only on fast syncing.
Don’t treat this as progressbar. The code will call/await the specified callback with one of the arguments from below:
fast_progress_callback(22, 'deleted')ORfast_progress_callback(22, 'imported')ORfast_progress_callback(22, 'metadata edited')
Note
By default this method will use a fast syncing, from the “Recent Actions” admin log. This is the best for changes made within 48 hours & useless after. Deep syncing will iterate over each file in the remote and compare it to local, thus, may take a very long time to complete.
In fast syncing we will fetch updates to Box only from other admins.
- drb (
- class tgbox.api.local.DecryptedLocalBoxDirectory(elbd: EncryptedLocalBoxDirectory, key: BaseKey | MainKey | None = None, dlb: DecryptedLocalBox | None = None)
Bases:
EncryptedLocalBoxDirectory- async static decrypt() NoReturn
Decrypt self and return
DecryptedLocalBoxDirectory- Arguments:
- key (
BaseKey,MainKey, optional): Decryption key. Must be specified if
dlbisNone.- dlb (
DecryptedLocalBox, optional): DecryptedLocalBoxthat we will use to decryptEncryptedLocalBoxDirectory. Must be specified ifkeyargument isNone.
- key (
- async delete() None
Will delete this folder with all files from your LocalBox. All files will stay in
RemoteBox, so you can restore all your folders by importing files.
- property floaded: bool
Will return
Trueif path was fully loaded
- async get_contents_total() int
Will return a total number of contents in this directory
- async get_files_total() int
Will return a total number of files in this directory
- async get_folders_total() int
Will return a total number of folders in this directory
- async static init() NoReturn
Will fetch required data from the database.
- property initialized: bool
Returns
Trueif you already called.init()
- async iterdir(ignore_dirs: bool = False, ignore_files: bool = False, cache_preview: bool = True, ppid: bytes | DirectoryRoot | None = None) EncryptedLocalBoxFile | DecryptedLocalBoxFile | EncryptedLocalBoxDirectory | DecryptedLocalBoxDirectory
Iterate over all files/folders in this abstract directory.
- Arguments:
- ignore_dirs (
bool, optional): Return abstract folders from this directory as LocalBoxDirectory or not. If
Falsewill return only LocalBoxFile objects.- ignore_files (
bool, optional): Will return LocalBoxFile if
False.- cache_preview (
bool, optional): Cache preview in class or not.
Trueby default.- ppid (
bytes,DirectoryRoot): Path PartID to iterate in. Will iterate over absolute LocalBox directory root if it’s
DirectoryRoot. Will useself.part_idif not specified (by default).
- ignore_dirs (
- async lload(full: bool | None = False)
Will load and return one path part from the left side (previous) or return
Noneif there is nothing left.- Arguments:
- full (
bool, optional): If
fullisTrue, will load all parts from the left side and returnNone.
- full (
- property parent_part_id: bytes | None
Returns
Noneif you didn’t called the.init()method, parent path part ID otherwise.
- property part: bytes | None
Returns
Noneif you didn’t called the.init()method, encrypted path part if you’re inEncryptedLocalBoxDirectory, and decrypted ifDecryptedLocalBoxDirectory.
- property part_id: bytes
Returns path part ID
- property parts: list
Will return loaded path parts.
- class tgbox.api.local.DecryptedLocalBoxFile(elbf: EncryptedLocalBoxFile, key: FileKey | ImportKey | MainKey | None = None, dlb: DecryptedLocalBox | None = None, cache_preview: bool = True)
Bases:
EncryptedLocalBoxFileThis class represents an decrypted local file. On more low-level that’s a wrapper of
FILEStable in Tgbox Database that decrypts row.Typical usage:
from asyncio import run as asyncio_run from tgbox.api import get_localbox from tgbox.keys import make_basekey, Phrase phrase = Phrase(b'example phrase here') basekey = make_basekey(phrase) async def main(): dlb = await get_localbox(basekey) lfid = dlb.get_last_file_id() dlbfi = await dlb.get_file(lfid) print(dlbfi.id, dlbfi.id, dlbfi.size) asyncio_run(main())
- property box_salt: bytes | None
Returns box salt or
Noneif file wasn’t initialized
- property cattrs: bytes | None
Returns file Custom Attributes
- async static decrypt() NoReturn
Returns decrypted by
key/dlbEncryptedLocalBoxFile- Arguments:
- key (
FileKey,MainKey): Decryption key. Must be specified if
dlbargument isNone.- dlb (
DecryptedLocalBox, optional): Decrypted LocalBox. Must be specified if
keyargument isNone.
- key (
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Will return
DefaultsTableWrapperorRemoteBoxDefaults.
- async delete() None
Will delete this file from your LocalBox. You can re-import it from
RemoteBoxwithimport_file.Note
This will delete file only from your LocalBox. To completly remove your file use same function on
EncryptedRemoteBoxFile.
- property directory: EncryptedLocalBoxDirectory | DecryptedLocalBoxDirectory | None
Returns
Nonei you call it onEncryptedLocalBoxFilethat wasn’t initialized,EncryptedLocalBoxDirectoryif on initialized orDecryptedLocalBoxDirectoryif you call it onDecryptedLocalBoxFile
- disable_cache_preview() None
Sets
self._cache_previewtoFalseand removes cached preview from memory.
- property download_path: Path
Returns current download path
- property duration: int
Returns media file duration.
- enable_cache_preview() None
Sets
self._cache_previewtoTrue. Preview will be cached after firstobject.previewcall.
- property file_iv: bytes | None
Returns file IV or
Noneif file wasn’t initialized
- property file_name: str
Returns file name.
- property file_path: Path
Returns file path.
- property file_salt: bytes | None
Returns file salt or
Noneif file wasn’t initialized
- property fingerprint: bytes | None
Returns file fingerprint (hash of file path plus mainkey) or
None
- get_requestkey(mainkey: MainKey) RequestKey
Returns
RequestKeyfor this File. You should use this method if you want to decrypt other’sEncryptedLocalBoxFile.- Arguments:
- mainkey (
MainKey): To make a
RequestKeyfor other’sEncryptedLocalBoxFileyou need to have your own Box. Take key from it and specify here.
- mainkey (
Returns
ShareKeyfor this file. You should use this method if you want to share yourDecryptedLocalBoxFilewith other people.- Arguments:
- reqkey (
RequestKey, optional): Other’s
RequestKey. If isn’t specified returnsShareKeyof this file without encryption, so ANYONE with this key can decrypt this local & remote box file.
- reqkey (
- property id: int | None
Returns file ID or
Noneif file wasn’t initialized
- property imported: bool | None
Returns
Trueif file was forwarded to your BoxChannel.
- async static init() NoReturn
Will fetch and parse data from the Database.
- property initialized: bool
Returns
Trueif you already called.init()
- property lb: EncryptedLocalBox | DecryptedLocalBox
Will return
EncryptedLocalBoxfrom theEncryptedLocalBoxFileandDecryptedLocalBoxfrom theDecryptedLocalBoxFileobject.
- property mime: bytes | None
Returns mime type of the file
- property prefix: bytes | None
Returns file prefix or
Noneif file wasn’t initialized
- property preview: bytes | None
Returns preview bytes or
b''ifcache_previewisFalse.
- async refresh_metadata(drb: 'tgbox.api.remote.DecryptedRemoteBox' | None = None, drbf: 'tgbox.api.remote.DecryptedRemoteBoxFile' | None = None, _updated_metadata: bytes | None = None)
This method will refresh local UPDATED_METADATA from the remote box file. You should call it after every
DecryptedRemoteBoxFile.update_metadataawait, or specifyDecryptedLocalBoxwhen awaitingupdate_metadataasdlbkwarg.- Arguments:
- drb (
DecryptedRemoteBox, optional): DecryptedRemoteBoxassociated with thisDecryptedLocalBox.- drbf (
DecryptedRemoteBoxFile, optional): Remote box file from which we will extract metadata. You can use it as alternative to the “drb” argument here.
- _updated_metadata (
str, optional): Updated metadata by itself. This is for internal use, specify only
drb.
- drb (
You should specify at least one argument.
- property residual_metadata: dict
Will return metadata that left after parsing secret_metadata. This can be useful in future, when lower version will read file of a higher version.
- set_download_path(path: Path)
Will set download path to specified.
- property size: int
Returns file size (no metadata included).
- async update_metadata(changes: Dict[str, bytes | None], dlb: 'DecryptedLocalBox' | None = None, drb: 'DecryptedRemoteBox' | None = None)
This method will “update” file metadata attributes
In most cases you will want to use the same method on the
DecryptedRemoteBoxFileand then refresh metadata of theDecryptedLocalBoxFilevia therefresh_metadata()method. This way you will update metadata of the Remote and Local file.However, you may want to update file metadata in the LocalBox only, and left the RemoteBox untouched. For such case use this method only.
- Arguments:
- changes (
Dict[str, Union[bytes, None]]): Metadata changes. You can specify a
Noneas value to remove key from updates.- dlb (
DecryptedLocalBox, optional): If current local file wasn’t decrypted with the DecryptedLocalBox/MainKey then we can’t decrypt the efile_path (the new file_path) if it’s present. You can specify a
DecryptedLocalBoxto fix this. You don’t need to worry about this if you receive files from theDecryptedLocalBox- drb (
DecryptedRemoteBox, optional): DecryptedRemoteBoxassociated with thisDecryptedLocalBox. Will auto refresh your updates in remote. Don’t specify this if you want to update metadata in the LocalBox only.
- changes (
E.g: This code will replace
file_namemetadata attribute of theDecryptedLocalBoxFile... # Most code is omited, see help(tgbox.api) dlbf = await dlb.get_file(dlb.get_last_file_id()) await dlbf.update_metadata({'file_name': b'new.txt'}) print(dlbf.file_name) # new.txt
Note
Your RemoteBox will NOT know about this update, so you should specify here
drb.Not a default metadata (default is file_name, mime, etc) will be placed to the
residual_metadataproperty dict.LocalBox doesn’t have any limit on the CAttrs size, but in RemoteBox there is a file caption (and so updated metadata) limit: 1KB and 2KB for a Premium Telegram users. Don’t specify
drbif you want to update LocalBox only.You can replace file’s path by specifying a file_path` key with appropriate path (str/bytes).
- property upload_time: bytes | int | None
Returns encrypted
upload_timefromEncryptedLocalBoxFileand decrypted fromDecryptedLocalBoxFile.Noneif class wasn’t initialized.
- property version_byte: bytes | None
Returns Verbyte of this file or
Noneif class wasn’t initialized
- class tgbox.api.local.EncryptedLocalBox(tgbox_db: TgboxDB, defaults: DefaultsTableWrapper | RemoteBoxDefaults | None = None)
Bases:
objectThis class represents an encrypted local box. On more low-level that’s a wrapper around
TgboxDB. Usually you will never meet this class in your typical code, but you may want to extract some encrypted data.Usage:
from asyncio import run as asyncio_run from tgbox.api import EncryptedLocalBox from tgbox.db import TgboxDB async def main(): # Make or open TgboxDB tdb = await TgboxDB.create('TGBOX') # Initialize EncryptedLocalBox elb = await EncryptedLocalBox(tdb).init() # Retrieve encrypted session or None print(elb.session) asyncio_run(main())
You can acces it from the
DecryptedLocalBox:from asyncio import run as asyncio_run from tgbox.api import get_localbox from tgbox.keys import make_basekey, Phrase phrase = Phrase(b'example phrase here') basekey = make_basekey(phrase) async def main(): dlb = await get_localbox(basekey) # Retrieve encrypted session print(dlb._elb.session) asyncio_run(main())
- property api_hash: str | None
Returns API_HASH.
- property api_id: int | None
Returns API_ID.
- property box_channel_id: bytes | int | None
Returns encrypted channel ID from
EncryptedLocalBoxand decrypted fromDecryptedLocalBox.
- property box_cr_time: bytes | int | None
Returns encrypted box creation time from
EncryptedLocalBoxand decrypted fromDecryptedLocalBox.
- property box_salt: bytes | None
Returns BoxSalt or
Noneif not initialized
- async contents(sfpid: bytes | None = None, ignore_files: bool | None = False) AsyncGenerator[EncryptedLocalBoxDirectory | DecryptedLocalBoxDirectory, None]
Recursive iterate over all files/folders in LocalBox.
- Arguments:
- sfpid (
bytes, optional): Will start from this PartID if specified, else will start from “root” PIDs.
- ignore_files (
bool, optional): Will not return LocalBoxFile associated with the LocalBoxDirectory if
False.
- sfpid (
- async decrypt(key: BaseKey | MainKey) DecryptedLocalBox
Will return
DecryptedLocalBox.You should specify
BaseKeyif you want to access session and use this dlb with RemoteBox, however, you can specifyMainKeyif you only want to iterate over local files / fetch basic local info.
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Returns
DefaultsTableWrapperorRemoteBoxDefaults.
- async delete() None
This method WILL DELETE your LocalBox database. It doesn’t affect RemoteBox, so you can make new LocalBox from the Remote version if you have MainKey.
Will raise
FileNotFoundErrorif something goes wrong (i.e DB was moved).
- async delete_files(*lbf: 'EncryptedLocalBoxFile' | 'DecryptedLocalBoxFile', lbf_ids: list | None = None, rb: 'tgbox.api.remote.EncryptedRemoteBox' | 'tgbox.api.remote.DecryptedRemoteBox' | None = None) None
A function to remove a bunch of local files at once.
- Arguments:
- lbf (
EncryptedLocalBoxFile,DecryptedLocalBoxFile, asterisk): (Encrypted|Decrypted)LocalBoxFile(s)to remove.- lbf_ids (
list, optional): You can specify ids instead of LocalBox file objects. However,
lbfis preferred here.- rb (
EncryptedRemoteBox,DecryptedRemoteBox, optional): You can specify a RemoteBox associated with current LocalBox to also remove all specified files in RemoteBox too.
- lbf (
Note
Without
rbthis will delete files only from your LocalBox. To completly remove your file use the same coroutine on RemoteBox or specify(Encrypted|Decrypted)RemoteBox.
- async done()
Await this method when you end all work with LocalBox, so we will clean up & close connections.
- async files(cache_preview: bool = True, min_id: int | None = None, max_id: int | None = None, ids: int | list | None = None) 'DecryptedLocalBoxFile' | 'EncryptedLocalBoxFile' | None
Yields every local file as
EncryptedLocalBoxFileif you call it onEncryptedLocalBoxandDecryptedLocalBoxFileif onDecryptedLocalBox. Works viaself.get_fileAlternatively, you may use LocalBox.contents method.
- Arguments:
- cache_preview (
bool, optional): Cache preview in class or not.
- min_id (
bool, optional): Will iterate from this ID.
- max_id (
bool, optional): Will iterate up to this ID.
- ids (
int,list, optional): ID or list with IDs you want to fetch. If specified, The min_id and max_id args will be ignored
- cache_preview (
- async get_file(id: int, decrypt: bool = True, cache_preview: bool = True) DecryptedLocalBoxFile | EncryptedLocalBoxFile | None
Returns
EncryptedLocalBoxFilefromEncryptedLocalBoxorDecryptedLocalBoxFilefromDecryptedLocalBoxif file exists.Noneotherwise.- Arguments:
- id (
int): File ID.
- decrypt (
bool, optional): Force return EncryptedLocalBoxFile
- cache_preview (
bool, optional): Cache preview in class or not.
- id (
- async get_last_file_id() int
Returns last file id from the FILES table. If there is no files at all, will return 0.
- get_requestkey(basekey: BaseKey) RequestKey
Returns
RequestKeyfor this LocalBox. You should use this method if you want to decrypt other’sRemoteBox.- Arguments:
- basekey (
BaseKey): To make a
RequestKeyfor other’sRemoteBoxyou need to create newBaseKeyfor it. Later this key will be used for Box decryption.
- basekey (
- async init() EncryptedLocalBox
Will fetch and parse data from Database.
- property initialized: bool
Returns
Trueif you called.init()
- property session: bytes | str | None
Returns encrypted session from
EncryptedLocalBoxand decrypted fromDecryptedLocalBox.
- class tgbox.api.local.EncryptedLocalBoxDirectory(elb: EncryptedLocalBox, part_id: bytes)
Bases:
objectClass that represents abstract tgbox directory. You can iterate over all files/folders in it, as well as load parent folder up to root.
Typical usage:
from asyncio import run as asyncio_run from tgbox.api import get_localbox from tgbox.keys import make_basekey, Phrase phrase = Phrase(b'example phrase here') basekey = make_basekey(phrase) async def main(): dlb = await get_localbox(basekey) dlbfi = await dlb.get_file(await dlb.get_last_file_id()) # Load directory up to the root await dlbfi.directory.lload(full=True) print(dlbfi.directory) # Iterate over files/folders in this directory async for content in dlbfi.directory.iterdir(): print(content) # May be file or another dir asyncio_run(main())
- async decrypt(key: BaseKey | MainKey | None = None, dlb: DecryptedLocalBox | None = None)
Decrypt self and return
DecryptedLocalBoxDirectory- Arguments:
- key (
BaseKey,MainKey, optional): Decryption key. Must be specified if
dlbisNone.- dlb (
DecryptedLocalBox, optional): DecryptedLocalBoxthat we will use to decryptEncryptedLocalBoxDirectory. Must be specified ifkeyargument isNone.
- key (
- async delete() None
Will delete this folder with all files from your LocalBox. All files will stay in
RemoteBox, so you can restore all your folders by importing files.
- property floaded: bool
Will return
Trueif path was fully loaded
- async get_contents_total() int
Will return a total number of contents in this directory
- async get_files_total() int
Will return a total number of files in this directory
- async get_folders_total() int
Will return a total number of folders in this directory
- async init() EncryptedLocalBoxDirectory
Will fetch required data from the database.
- property initialized: bool
Returns
Trueif you already called.init()
- async iterdir(ignore_dirs: bool = False, ignore_files: bool = False, cache_preview: bool = True, ppid: bytes | DirectoryRoot | None = None) EncryptedLocalBoxFile | DecryptedLocalBoxFile | EncryptedLocalBoxDirectory | DecryptedLocalBoxDirectory
Iterate over all files/folders in this abstract directory.
- Arguments:
- ignore_dirs (
bool, optional): Return abstract folders from this directory as LocalBoxDirectory or not. If
Falsewill return only LocalBoxFile objects.- ignore_files (
bool, optional): Will return LocalBoxFile if
False.- cache_preview (
bool, optional): Cache preview in class or not.
Trueby default.- ppid (
bytes,DirectoryRoot): Path PartID to iterate in. Will iterate over absolute LocalBox directory root if it’s
DirectoryRoot. Will useself.part_idif not specified (by default).
- ignore_dirs (
- async lload(full: bool | None = False)
Will load and return one path part from the left side (previous) or return
Noneif there is nothing left.- Arguments:
- full (
bool, optional): If
fullisTrue, will load all parts from the left side and returnNone.
- full (
- property parent_part_id: bytes | None
Returns
Noneif you didn’t called the.init()method, parent path part ID otherwise.
- property part: bytes | None
Returns
Noneif you didn’t called the.init()method, encrypted path part if you’re inEncryptedLocalBoxDirectory, and decrypted ifDecryptedLocalBoxDirectory.
- property part_id: bytes
Returns path part ID
- property parts: list
Will return loaded path parts.
- class tgbox.api.local.EncryptedLocalBoxFile(id: int, elb: EncryptedLocalBox, cache_preview: bool = True)
Bases:
objectThis class represents an encrypted local file. On more low-level that’s a wrapper around row of
FILEStable in Tgbox Database. Usually you will not use this in your code.from asyncio import run as asyncio_run from tgbox.api import get_localbox from tgbox.keys import make_basekey, Phrase phrase = Phrase(b'example phrase here') basekey = make_basekey(phrase) async def main(): dlb = await get_localbox(basekey) elbf = await dlb.get_file( id = await dlb.get_last_file_id(), decrypt = False ) print(elbf.file_salt.hex()) print(elbf.box_salt.hex()) asyncio_run(main())
- property box_salt: bytes | None
Returns box salt or
Noneif file wasn’t initialized
- async decrypt(key: FileKey | MainKey | None = None, dlb: DecryptedLocalBox | None = None) DecryptedLocalBoxFile
Returns decrypted by
key/dlbEncryptedLocalBoxFile- Arguments:
- key (
FileKey,MainKey): Decryption key. Must be specified if
dlbargument isNone.- dlb (
DecryptedLocalBox, optional): Decrypted LocalBox. Must be specified if
keyargument isNone.
- key (
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Will return
DefaultsTableWrapperorRemoteBoxDefaults.
- async delete() None
Will delete this file from your LocalBox. You can re-import it from
RemoteBoxwithimport_file.Note
This will delete file only from your LocalBox. To completly remove your file use same function on
EncryptedRemoteBoxFile.
- property directory: EncryptedLocalBoxDirectory | DecryptedLocalBoxDirectory | None
Returns
Nonei you call it onEncryptedLocalBoxFilethat wasn’t initialized,EncryptedLocalBoxDirectoryif on initialized orDecryptedLocalBoxDirectoryif you call it onDecryptedLocalBoxFile
- disable_cache_preview() None
Sets
self._cache_previewtoFalseand removes cached preview from memory.
- enable_cache_preview() None
Sets
self._cache_previewtoTrue. Preview will be cached after firstobject.previewcall.
- property file_iv: bytes | None
Returns file IV or
Noneif file wasn’t initialized
- property file_salt: bytes | None
Returns file salt or
Noneif file wasn’t initialized
- property fingerprint: bytes | None
Returns file fingerprint (hash of file path plus mainkey) or
None
- get_requestkey(mainkey: MainKey) RequestKey
Returns
RequestKeyfor this File. You should use this method if you want to decrypt other’sEncryptedLocalBoxFile.- Arguments:
- mainkey (
MainKey): To make a
RequestKeyfor other’sEncryptedLocalBoxFileyou need to have your own Box. Take key from it and specify here.
- mainkey (
- property id: int | None
Returns file ID or
Noneif file wasn’t initialized
- property imported: bool | None
Returns
Trueif file was forwarded to your BoxChannel.
- async init() EncryptedLocalBoxFile
Will fetch and parse data from the Database.
- property initialized: bool
Returns
Trueif you already called.init()
- property lb: EncryptedLocalBox | DecryptedLocalBox
Will return
EncryptedLocalBoxfrom theEncryptedLocalBoxFileandDecryptedLocalBoxfrom theDecryptedLocalBoxFileobject.
- property prefix: bytes | None
Returns file prefix or
Noneif file wasn’t initialized
- property upload_time: bytes | int | None
Returns encrypted
upload_timefromEncryptedLocalBoxFileand decrypted fromDecryptedLocalBoxFile.Noneif class wasn’t initialized.
- property version_byte: bytes | None
Returns Verbyte of this file or
Noneif class wasn’t initialized
- async tgbox.api.local.clone_remotebox(drb: tgbox.api.remote.DecryptedRemoteBox, basekey: BaseKey, progress_callback: Callable[[int, int], None] | None = None, box_path: PathLike | str | None = None, timeout: int | None = 15) DecryptedLocalBox
This method makes
LocalBoxfromRemoteBoxand imports all RemoteBoxFiles to it.- Arguments:
- drb (
DecryptedRemoteBox): DecryptedRemoteBoxyou want to clone.- basekey (
BaseKey): BaseKeywith which you will decrypt your clonedEncryptedLocalBox.BaseKeyencrypts Session andMainKeyof original LocalBox.- progress_callback (
Callable[[int, int], None], optional): A callback function accepting two parameters: (current_amount, total).
- box_path (
PathLike,str, optional): Direct path with filename included. If not specified, then
RemoteBoxname used.- timeout (
int, optional): How many seconds generator will sleep at every 1000 file. By default it’s 15 seconds. Don’t use too low timeouts or you will receive FloodWaitError.
- drb (
- async tgbox.api.local.get_localbox(basekey: BaseKey | None = None, tgbox_db_path: PathLike | str | None = 'TGBOX') EncryptedLocalBox | DecryptedLocalBox
Returns LocalBox.
- Arguments:
- basekey (
BaseKey, optional): Returns
DecryptedLocalBoxif specified,EncryptedLocalBoxotherwise (default).- tgbox_db_path (
PathLike,str, optional): PathLiketo your TgboxDB (LocalBox). Default isdefaults.DEF_TGBOX_NAME.
- basekey (
- async tgbox.api.local.make_localbox(erb: tgbox.api.remote.EncryptedRemoteBox, basekey: BaseKey) DecryptedLocalBox
Makes LocalBox
- Arguments:
- erb (
RemoteBox): EncryptedRemoteBox. You will recieve it aftermake_remotebox.- basekey (
BaseKey): BaseKeythat will be used forMainKeycreation.
- erb (
tgbox.api.remote module
Module with API functions and classes for RemoteBox.
- class tgbox.api.remote.DecryptedRemoteBox(erb: EncryptedRemoteBox, key: MainKey | ImportKey | None = None, dlb: DecryptedLocalBox | None = None)
Bases:
EncryptedRemoteBoxRemoteBox is a remote cloud storage. You can upload files and download them later.
Locally we only keep info about files (in LocalBox). You can fully restore your LocalBox from RemoteBox.
This class represents decrypted RemoteBox, you can iterate over all decrypted files, clone and upload.
from asyncio import run as asyncio_run from tgbox.api import get_localbox, get_remotebox from tgbox.keys import make_basekey, Phrase phrase = Phrase(b'example phrase here') basekey = make_basekey(phrase) async def main(): dlb = await dlb.get_localbox(basekey) drb = await get_remotebox(dlb) # Make a PreparedFile pf = await dlb.prepare_file(open('cats.jpg','rb')) # Waiting file for upload, return DecryptedRemoteBoxFile drbf = await drb.push_file(pf) # Get some info print(drbf.file_name, drbf.size) # Remove file from RemoteBox await drbf.delete() # Check if file exists print(await drb.file_exists(drbf.id) asyncio_run(main())
- property box_channel: Channel
Returns instance of
Channel
- property box_channel_id: int
Returns box channel id
- async static decrypt() NoReturn
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Will return
DefaultsTableWrapperifdlbwas specified orRemoteBoxDefaultswith arguments from thedefaultsmodule if wasn’t.
- async delete() None
This method WILL DELETE RemoteBox.
Use
left()if you only want to left your BoxChannel, not delete it.You need to have admin rights for this.
- async delete_files(*rbf: EncryptedRemoteBoxFile | DecryptedRemoteBoxFile, rbf_ids: list | None = None, lb: tgbox.api.local.EncryptedLocalBox | tgbox.api.local.DecryptedLocalBox | None = None) None
A function to remove a bunch of remote files at once. You need to have some admin rights.
- Arguments:
- rbf (
EncryptedRemoteBoxFile,DecryptedRemoteBoxFile, asterisk): (Encrypted|Decrypted)RemoteBoxFile(s)to remove.- rbf_ids (
list, optional): You can specify ids instead of RemoteBox file objects. However,
rbfis preferred here.- lb (
EncryptedLocalBox,DecryptedLocalBox, optional): You can specify a LocalBox associated with current RemoteBox to also remove all specified files in LocalBox too.
- rbf (
Note
If you want to delete files only from your LocalBox then you can use the same method on your LocalBoxFile.
- async done()
Await this method when you end all work with RemoteBox, so we will clean up & close connections.
- async file_exists(id: int) bool
Returns
Trueif file with specifiedidexists in RemoteBox.Falseotherwise.- Arguments:
- id (
int): File ID.
- id (
- async files(key: MainKey | FileKey | None = None, dlb: DecryptedLocalBox | None = None, *, ignore_errors: bool = True, return_imported_as_erbf: bool = False, limit: int | None = None, offset_id: int = 0, max_id: int = 0, min_id: int = 0, add_offset: int = 0, search: str | None = None, from_user: int | str | None = None, wait_time: float | None = None, ids: int | List[int] | None = None, reverse: bool = False, decrypt: bool = True, timeout: int = 15, cache_preview: bool = True, erase_encrypted_metadata: bool = True) AsyncGenerator[EncryptedRemoteBoxFile | DecryptedRemoteBoxFile, None]
Yields every RemoteBoxFile from
RemoteBox.Note
The default order is from newest to oldest, but this behaviour can be changed with the
reverseparameter.You can ignore
keyanddlbif you call this method onDecryptedRemoteBox.
- Arguments:
- key (
MainKey,FileKey, optional): Will be used to decrypt
EncryptedRemoteBoxFile.- dlb (
DecryptedLocalBox, optional): If file in your
RemoteBoxwas imported from otherRemoteBoxthen you can’t decrypt it with specified mainkey, but if you already imported it to your LocalBox, then you can specify dlb and we will useFILE_KEYfrom the Database.If
decryptspecified but there is nokey, then we try to use mainkey from this dlb.This kwarg works in tandem with
ignore_errorsandreturn_imported_as_erbfif dlb doesn’t have this file (tip: you need to import it withdlb.import_file.- ignore_errors (
bool, optional): Ignore all errors related to decryption of the files in your
RemoteBox. IfTrue, (by default) only yields files that was successfully decrypted. Can be useful if you have files that was imported from otherRemoteBoxand you don’t want to specify dlb.- return_imported_as_erbf (
bool, optional): If specified, yields files that generator can’t decrypt (imported) as
EncryptedRemoteBoxFile.- limit (
int|None, optional): Number of files to be retrieved. Due to limitations with the API retrieving more than 3000 messages will take longer than half a minute (or even more based on previous calls). The limit may also be
None, which would eventually return the whole history.- offset_id (
int, optional): Offset message ID (only remote files previous to the given ID will be retrieved). Exclusive.
- max_id (
int, optional): All the remote box files with a higher (newer) ID or equal to this will be excluded.
- min_id (
int, optional): All the remote box files with a lower (older) ID or equal to this will be excluded.
- add_offset (
int, optional): Additional message offset (all of the specified offsets + this offset = older files).
- search (
str, optional): The string to be used as a search query.
- from_user (
str,int, optional): Only messages from this entity will be returned.
- wait_time (
int, optional): Wait time (in seconds) between different
GetHistoryRequest(Telethon). Use this parameter to avoid hitting the``FloodWaitError``as needed. If left toNone, it will default to 1 second only if the limit is higher than 3000. If the``ids``parameter is used, this time will default to 10 seconds only if the amount of IDs is higher than 300.- ids (
int,list, optional): A single integer ID (or several IDs) for the box files that should be returned. This parameter takes precedence over the rest (which will be ignored if this is set). This can for instance be used to get the file with ID 123 from a box channel. Note that if the file-message doesn’t exist,
Nonewill appear in its place, so that zipping the list of IDs with the files can match one-to-one.- reverse (
bool, optional): If set to
True, the remote files will be returned in reverse order (from oldest to newest, instead of the default newest to oldest). This also means that the meaning ofoffset_idparameter is reversed, althoughoffset_idstill be exclusive.min_idbecomes equivalent tooffset_idinstead of beingmax_idas well since files are returned in ascending order.- timeout (
int, optional): How many seconds generator will sleep at every 1000 file. By default it’s 15 seconds. Don’t use too low timeouts, you will receive FloodWaitError otherwise (TGBOX).
- decrypt (
bool, optional): Returns
DecryptedRemoteBoxFileifTrue(default),EncryptedRemoteBoxFileotherwise.- cache_preview (
bool, optional): Cache preview in yielded by generator RemoteBoxFiles or not.
Trueby default.- erase_encrypted_metadata (
bool, optional): Will remove metadata from the parent
EncryptedRemoteBoxFileafter decryption to save more RAM ifTrue. You can call.init()method on it to load it again.
- key (
- async get_box_name()
Returns name of
RemoteBox. Will be cached after first method call.
- async get_box_salt() bytes
Returns BoxSalt. Will be cached after first method call.
- async get_file(id: int, key: MainKey | FileKey | ImportKey | None = None, dlb: DecryptedLocalBox | None = None, decrypt: bool = True, ignore_errors: bool = True, return_imported_as_erbf: bool = False, cache_preview: bool = True) EncryptedRemoteBoxFile | DecryptedRemoteBoxFile | None
Returns file from the
RemoteBoxby the given ID.Note
You may ignore
key` and ``dlbif you call this method onDecryptedRemoteBox.- Arguments:
- id (
int): File ID.
- key (
MainKey,FileKey, optional): Will be used to decrypt
EncryptedRemoteBoxFile.- dlb (
DecryptedLocalBox, optional): If file in your
RemoteBoxwas imported from otherRemoteBoxthen you can’t decrypt it with specified mainkey, but if you already imported it to your LocalBox, then you can specifydlband we will useFILE_KEYfrom the Database.If
decryptspecified but there is nokey, then we try to use mainkey from thisdlb.This kwarg works in tandem with
ignore_errorsandreturn_imported_as_erbfif dlb doesn’t have this file (tip: you need to import it withdlb.import_file).- decrypt (
bool, optional): Returns
DecryptedRemoteBoxFileifTrue(default),EncryptedRemoteBoxFileotherwise.- ignore_errors (
bool, optional): Ignore all errors related to decryption of the files in your
RemoteBox. IfTrue, (by default) only returns file that was successfully decrypted. Can be useful if you have files that was imported from otherRemoteBoxand you don’t want to specifydlb.- return_imported_as_erbf (
bool, optional): If specified, returns file that method can’t decrypt (if imported) as
EncryptedRemoteBoxFile.- cache_preview (
bool, optional): Cache preview in returned by method RemoteBoxFiles or not.
Trueby default.
- id (
- async get_last_file_id() int
Returns last channel file id. If nothing found returns 0
- async get_requestkey(basekey: BaseKey) RequestKey
Returns
RequestKeyfor this RemoteBox. You should use this method if you want to decrypt other’sRemoteBox.- Arguments:
- basekey (
BaseKey): To make a
RequestKeyfor other’sRemoteBoxyou need to create newBaseKeyfor it. Later this key will be used for Box decryption.
- basekey (
Returns
ShareKeyfor this Box. You should use this method if you want to share yourRemoteBoxwith other people.- Arguments:
- reqkey (
RequestKey, optional): User’s
RequestKey. If isn’t specified returnsShareKeyof this box without encryption, so anyone with this key can decrypt ALL files in yourRemoteBox.
- reqkey (
- async left() None
With calling this method you will left RemoteBox
Channel.
- async push_file(pf: PreparedFile, progress_callback: Callable[[int, int], None] | None = None) DecryptedRemoteBoxFile
Uploads
PreparedFileto theRemoteBox.- Arguments:
- pf (
PreparedFile): PreparedFile to upload. You should recieve it via
DecryptedLocalBox.prepare_file.- progress_callback (
Callable[[int, int], None], optional): A callback function accepting two parameters: (downloaded_bytes, total).
- pf (
- async search_file(sf: SearchFilter, mainkey: MainKey | None = None, dlb: DecryptedLocalBox | None = None, cache_preview: bool = True, return_imported_as_erbf: bool = False, reverse: bool = True) AsyncGenerator[EncryptedRemoteBoxFile | DecryptedRemoteBoxFile, None]
This method used to search for files in your
RemoteBox.- Arguments:
- sf (
SearchFilter): SearchFilterwith kwargs you like.- mainkey (
MainKey, optional): MainKeyfor thisRemoteBox.- dlb (
DecryptedLocalBox, optional): LocalBox associated with this
RemoteBox. We will takeMainKeyfrom it.- cache_preview (
bytes, optional): Will cache preview in file object if
True.- return_imported_as_erbf (
bool, optional): If specified, will yield files that generator can’t decrypt (imported) as
EncryptedRemoteBoxFile.- reverse (
bool, optional): If set to
True(by default), the remote files will be returned in reverse order (from oldest to newest, instead of the default newest to oldest).
- sf (
Note
If
dlbandmainkeynot specified, then method will search only forEncryptedRemoteBoxFile.You may ignore this kwargs if you call this method on
DecryptedRemoteBoxclass.
- property tc: TelegramClient
Returns
TelegramClient
- class tgbox.api.remote.DecryptedRemoteBoxFile(erbf: EncryptedRemoteBoxFile, key: MainKey | FileKey | ImportKey)
Bases:
EncryptedRemoteBoxFileThis class represents decrypted remote file. You can retrieve all metadata info from properties.
Typical usage:
from asyncio import run as asyncio_run from tgbox.api import get_localbox, get_remotebox from tgbox.keys import Phrase, make_basekey phrase = Phrase(b'example phrase here') basekey = make_basekey(phrase) async def main(): dlb = await get_localbox(basekey) drb = await get_remotebox(dlb) drbf = await drb.get_file( id = await dlb.get_last_file_id() ) print(drbf.file_name) # Save file preview with open(f'preview_{drbf.file_name}','wb') as f: f.write(drbf.preview) # Download file, return BinaryIO file = await drbf.download() asyncio_run(main())
- property box_channel: Channel
Returns RemoteBox
Channelobject.
- property box_channel_id: int
Returns ID of the RemoteBox
Channel.
- property box_salt: bytes | None
Returns BoxSalt or
Noneif not initialized
- property cattrs: dict | None
Returns custom attributes or
Noneif not initialized
- async static decrypt() NoReturn
Returns
DecryptedRemoteBoxFile.- Arguments:
- key (
MainKey,FileKey,ImportKey,BaseKey): Decryption key. All, except
FileKeywill be used to makeFileKeyfor this file.- erase_encrypted_metadata (
bool, optional): Will remove metadata from the parent
EncryptedRemoteBoxFileafter decryption to save more RAM ifTrue. You can call.init()method on it to load it again.
- key (
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Will return
DefaultsTableWrapperorRemoteBoxDefaults.
- async delete() None
TOTALLY removes file from RemoteBox. You and all participants of the
EncryptedRemoteBoxwill lose access to it FOREVER. This action can’t be undone. You need to have rights for this action.Note
If you want to delete file only from your LocalBox then you can use the same
delete()method on your LocalBoxFile.
- async download(*, outfile: str | BinaryIO | Path | None = None, hide_folder: bool = False, hide_name: bool = False, decrypt: bool = True, request_size: int = 524288, progress_callback: Callable[[int, int], None] | None = None) BinaryIO
Downloads and saves remote box file to the
outfile.- Arguments:
- oufile (
str,BinaryIO,PathLike, optional): Path-like or File-like object to which file will be downloaded.
self.defaults.DOWNLOAD_PATHby default.If
outfilehas.write()method then we will use it.- hide_folder (
bool, optional): Saves to folder which this file belongs to if False, (default) otherwise to
outfile/{self.defaults.DEF_UNK_FOLDER}.Doesn’t create any folders if
isinstance(outfile, BinaryIO).
- hide_name (
bool, optional): Saves file with random name if
True, with original ifFalse(default).File extension (e.g
.png) included in both cases.Doesn’t create any folders if
isinstance(outfile, BinaryIO).
- decrypt (
bool, optional): Decrypts file if True (default).
- request_size (
int, optional): How many bytes will be requested to Telegram when more data is required. By default, as many bytes as possible are requested. If you would like to request data in smaller sizes, adjust this parameter.
Note that values outside the valid range will be clamped, and the final value will also be a multiple of the minimum allowed size.
- progress_callback (
Callable[[int, int], None], optional): A callback function accepting two parameters: (downloaded_bytes, total).
- oufile (
- property duration: float | None
Returns duration or
Noneif not initialized.
- property file: File
Returns Telethon’s
Fileobject.
- property file_file_name: bytes
Returns remote file name.
- property file_iv: bytes | None
Returns file IV or
Noneif not initialized.
- property file_name: str | None
Returns file name or
Noneif not initialized.
- property file_path: Path | None
Returns file path or
Noneif not initialized.
- property file_salt: bytes | None
Returns file salt or
Noneif not initialized.
- property file_size: int
Returns size of the
FilefromMessageobject.
- property fingerprint: bytes | None
Returns file fingerprint (hash of file path plus mainkey) or
None
- get_requestkey(mainkey: MainKey) RequestKey
Returns
RequestKeyfor this file. You should use this method if you want to decrypt other’sEncryptedRemoteBoxFile.- Arguments:
- mainkey (
MainKey): To make a
RequestKeyfor other’s RemoteBoxFile you need to have your Box. Take key from yourDecryptedLocalBoxand specify it here.
- mainkey (
Returns
ShareKeyfor this file. You should use this method if you want to share this file with other people.- Arguments:
- reqkey (
RequestKey, optional): Other’s
RequestKey. If isn’t specified returnsImportKeyof this file without encryption, so ANYONE with this key can decrypt this remote file.
- reqkey (
- property id: int
Returns message id.
- property imported: bool
Returns
Trueif file was imported from other RemoteBox.Falseotherwise.
- async init(cache_preview: bool = True, erase_encrypted_metadata: bool | None = True) DecryptedRemoteBoxFile
This method will decrypt and parse metadata from the EncryptedRemoteBoxFile.
This method will remove metadata from the parent EncryptedRemoteBoxFile to save more RAM if
erase_encrypted_metadatais specified. You can call .init() method on it to load it again.If ERBFI wasn’t initialized, this method will init it.
If
cache_previewwas disabled in the parent class then you can set similar kwarg here toTrueand method will save it.
- property initialized: bool
Returns
Trueif class was initialized.
- property message: Message
Returns Telethon’s
Messageobject.
- property mime: str | None
Returns MIME type or
Noneif not initialized
- property prefix: bytes | None
Returns file prefix or
Noneif not initialized
- property preview: bytes | None
Returns preview bytes or
b''if not initialized.
- property residual_metadata: dict | None
Will return metadata that left after parsing secret_metadata. This can be useful in future, when lower version will read file of a higher version.
Will always return
Noneif DRBFI wasn’t initialized.
- property sender: str | None
Returns post author if sign messages is enabled in
Channel,Noneotherwise
- set_file_path(file_path: Path) None
Will change self._file_path to file_path. In most cases you don’t need to use this
- property size: int | None
Returns file size or
Noneif not initialized.
- property tc: TelegramClient
Returns
TelegramClient
- async update_metadata(changes: Dict[str, bytes | None], dlb: DecryptedLocalBox | None = None)
This method will “update” file metadata attributes
Metadata located inside the file, so we can’t change it in any way except reupload, but we can and we will use its caption to place packed by PackedAttributes, encrypted and encoded with
urlsafe_b64encodechanges.- Arguments:
- changes (
Dict[str, Union[bytes, None]]): Metadata changes. You can specify a
Noneas value to remove key from updates.- dlb (
DecryptedLocalBox, optional): DecryptedLocalBoxassociated with thisDecryptedRemoteBox. Will auto refresh your updates. If not specified, then you will need to do it by yourself.
- changes (
E.g: This code will replace
file_namemetadata attribute of theDecryptedRemoteBoxFile... # Most code is omited, see help(tgbox.api) drbf = await drb.get_file(dlb.get_last_file_id()) await drbf.update_metadata({'file_name': b'new.txt'}) print(drbf.file_name) # new.txt
Note
Your LocalBox will NOT know about this update, so you should specify here
dlb(is better way) or await therefresh_metadatamethod on theDecryptedLocalBoxFilewith the same ID.Not a default metadata (default is file_name, mime, etc) will be placed to the
residual_metadataproperty dict.There is a file caption (and so updated metadata) limit: 1KB and 2KB for a Premium Telegram users.
You can replace file’s path by specifying a
file_pathkey with appropriate path (str/bytes). Also, you will need to specify aDecryptedLocalBoxasdlbso we can create a new LocalBoxDirectory from your path. Without it you will get aValueError
- property upload_time: int | None
Returns upload time or
Noneif not initialized
- property version_byte: bytes | None
Returns Verbyte or
Noneif not initialized
- class tgbox.api.remote.EncryptedRemoteBox(box_channel: Channel, tc: TelegramClient, defaults: DefaultsTableWrapper | RemoteBoxDefaults | None = None)
Bases:
objectRemoteBox is a remote cloud storage. You can upload files and download them later.
Locally we only keep info about files (in LocalBox). You can fully restore your LocalBox from RemoteBox.
Note
In
EncryptedRemoteBoxyou should specifyMainKeyorDecryptedLocalBox. Usually you want to useDecryptedRemoteBox, not this class.Typical usage:
from tgbox.api import ( TelegramClient, make_localbox, make_remotebox ) from getpass import getpass from asyncio import run as asyncio_run PHONE_NUMBER = '+10000000000' # Your phone number API_ID = 1234567 # Your own API_ID: my.telegram.org API_HASH = '00000000000000000000000000000000' # Your own API_HASH async def main(): # Connect and sign-in to Telegram tc = TelegramClient( phone_number = PHONE_NUMBER, api_id = API_ID, api_hash = API_HASH ) await tc.connect() await tc.send_code() await tc.log_in( code = int(input('Code: ')), password = getpass('Pass: ') ) # Making base RemoteBox (EncryptedRemoteBox) erb = await make_remotebox(tc) asyncio_run(main())
- property box_channel: Channel
Returns instance of
Channel
- property box_channel_id: int
Returns box channel id
- async decrypt(*, key: MainKey | ImportKey | BaseKey | None = None, dlb: DecryptedLocalBox | None = None) DecryptedRemoteBox
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Will return
DefaultsTableWrapperifdlbwas specified orRemoteBoxDefaultswith arguments from thedefaultsmodule if wasn’t.
- async delete() None
This method WILL DELETE RemoteBox.
Use
left()if you only want to left your BoxChannel, not delete it.You need to have admin rights for this.
- async delete_files(*rbf: EncryptedRemoteBoxFile | DecryptedRemoteBoxFile, rbf_ids: list | None = None, lb: tgbox.api.local.EncryptedLocalBox | tgbox.api.local.DecryptedLocalBox | None = None) None
A function to remove a bunch of remote files at once. You need to have some admin rights.
- Arguments:
- rbf (
EncryptedRemoteBoxFile,DecryptedRemoteBoxFile, asterisk): (Encrypted|Decrypted)RemoteBoxFile(s)to remove.- rbf_ids (
list, optional): You can specify ids instead of RemoteBox file objects. However,
rbfis preferred here.- lb (
EncryptedLocalBox,DecryptedLocalBox, optional): You can specify a LocalBox associated with current RemoteBox to also remove all specified files in LocalBox too.
- rbf (
Note
If you want to delete files only from your LocalBox then you can use the same method on your LocalBoxFile.
- async done()
Await this method when you end all work with RemoteBox, so we will clean up & close connections.
- async file_exists(id: int) bool
Returns
Trueif file with specifiedidexists in RemoteBox.Falseotherwise.- Arguments:
- id (
int): File ID.
- id (
- async files(key: MainKey | FileKey | None = None, dlb: DecryptedLocalBox | None = None, *, ignore_errors: bool = True, return_imported_as_erbf: bool = False, limit: int | None = None, offset_id: int = 0, max_id: int = 0, min_id: int = 0, add_offset: int = 0, search: str | None = None, from_user: int | str | None = None, wait_time: float | None = None, ids: int | List[int] | None = None, reverse: bool = False, decrypt: bool = True, timeout: int = 15, cache_preview: bool = True, erase_encrypted_metadata: bool = True) AsyncGenerator[EncryptedRemoteBoxFile | DecryptedRemoteBoxFile, None]
Yields every RemoteBoxFile from
RemoteBox.Note
The default order is from newest to oldest, but this behaviour can be changed with the
reverseparameter.You can ignore
keyanddlbif you call this method onDecryptedRemoteBox.
- Arguments:
- key (
MainKey,FileKey, optional): Will be used to decrypt
EncryptedRemoteBoxFile.- dlb (
DecryptedLocalBox, optional): If file in your
RemoteBoxwas imported from otherRemoteBoxthen you can’t decrypt it with specified mainkey, but if you already imported it to your LocalBox, then you can specify dlb and we will useFILE_KEYfrom the Database.If
decryptspecified but there is nokey, then we try to use mainkey from this dlb.This kwarg works in tandem with
ignore_errorsandreturn_imported_as_erbfif dlb doesn’t have this file (tip: you need to import it withdlb.import_file.- ignore_errors (
bool, optional): Ignore all errors related to decryption of the files in your
RemoteBox. IfTrue, (by default) only yields files that was successfully decrypted. Can be useful if you have files that was imported from otherRemoteBoxand you don’t want to specify dlb.- return_imported_as_erbf (
bool, optional): If specified, yields files that generator can’t decrypt (imported) as
EncryptedRemoteBoxFile.- limit (
int|None, optional): Number of files to be retrieved. Due to limitations with the API retrieving more than 3000 messages will take longer than half a minute (or even more based on previous calls). The limit may also be
None, which would eventually return the whole history.- offset_id (
int, optional): Offset message ID (only remote files previous to the given ID will be retrieved). Exclusive.
- max_id (
int, optional): All the remote box files with a higher (newer) ID or equal to this will be excluded.
- min_id (
int, optional): All the remote box files with a lower (older) ID or equal to this will be excluded.
- add_offset (
int, optional): Additional message offset (all of the specified offsets + this offset = older files).
- search (
str, optional): The string to be used as a search query.
- from_user (
str,int, optional): Only messages from this entity will be returned.
- wait_time (
int, optional): Wait time (in seconds) between different
GetHistoryRequest(Telethon). Use this parameter to avoid hitting the``FloodWaitError``as needed. If left toNone, it will default to 1 second only if the limit is higher than 3000. If the``ids``parameter is used, this time will default to 10 seconds only if the amount of IDs is higher than 300.- ids (
int,list, optional): A single integer ID (or several IDs) for the box files that should be returned. This parameter takes precedence over the rest (which will be ignored if this is set). This can for instance be used to get the file with ID 123 from a box channel. Note that if the file-message doesn’t exist,
Nonewill appear in its place, so that zipping the list of IDs with the files can match one-to-one.- reverse (
bool, optional): If set to
True, the remote files will be returned in reverse order (from oldest to newest, instead of the default newest to oldest). This also means that the meaning ofoffset_idparameter is reversed, althoughoffset_idstill be exclusive.min_idbecomes equivalent tooffset_idinstead of beingmax_idas well since files are returned in ascending order.- timeout (
int, optional): How many seconds generator will sleep at every 1000 file. By default it’s 15 seconds. Don’t use too low timeouts, you will receive FloodWaitError otherwise (TGBOX).
- decrypt (
bool, optional): Returns
DecryptedRemoteBoxFileifTrue(default),EncryptedRemoteBoxFileotherwise.- cache_preview (
bool, optional): Cache preview in yielded by generator RemoteBoxFiles or not.
Trueby default.- erase_encrypted_metadata (
bool, optional): Will remove metadata from the parent
EncryptedRemoteBoxFileafter decryption to save more RAM ifTrue. You can call.init()method on it to load it again.
- key (
- async get_box_name()
Returns name of
RemoteBox. Will be cached after first method call.
- async get_box_salt() bytes
Returns BoxSalt. Will be cached after first method call.
- async get_file(id: int, key: MainKey | FileKey | ImportKey | None = None, dlb: DecryptedLocalBox | None = None, decrypt: bool = True, ignore_errors: bool = True, return_imported_as_erbf: bool = False, cache_preview: bool = True) EncryptedRemoteBoxFile | DecryptedRemoteBoxFile | None
Returns file from the
RemoteBoxby the given ID.Note
You may ignore
key` and ``dlbif you call this method onDecryptedRemoteBox.- Arguments:
- id (
int): File ID.
- key (
MainKey,FileKey, optional): Will be used to decrypt
EncryptedRemoteBoxFile.- dlb (
DecryptedLocalBox, optional): If file in your
RemoteBoxwas imported from otherRemoteBoxthen you can’t decrypt it with specified mainkey, but if you already imported it to your LocalBox, then you can specifydlband we will useFILE_KEYfrom the Database.If
decryptspecified but there is nokey, then we try to use mainkey from thisdlb.This kwarg works in tandem with
ignore_errorsandreturn_imported_as_erbfif dlb doesn’t have this file (tip: you need to import it withdlb.import_file).- decrypt (
bool, optional): Returns
DecryptedRemoteBoxFileifTrue(default),EncryptedRemoteBoxFileotherwise.- ignore_errors (
bool, optional): Ignore all errors related to decryption of the files in your
RemoteBox. IfTrue, (by default) only returns file that was successfully decrypted. Can be useful if you have files that was imported from otherRemoteBoxand you don’t want to specifydlb.- return_imported_as_erbf (
bool, optional): If specified, returns file that method can’t decrypt (if imported) as
EncryptedRemoteBoxFile.- cache_preview (
bool, optional): Cache preview in returned by method RemoteBoxFiles or not.
Trueby default.
- id (
- async get_last_file_id() int
Returns last channel file id. If nothing found returns 0
- async get_requestkey(basekey: BaseKey) RequestKey
Returns
RequestKeyfor this RemoteBox. You should use this method if you want to decrypt other’sRemoteBox.- Arguments:
- basekey (
BaseKey): To make a
RequestKeyfor other’sRemoteBoxyou need to create newBaseKeyfor it. Later this key will be used for Box decryption.
- basekey (
- async left() None
With calling this method you will left RemoteBox
Channel.
- async push_file(pf: PreparedFile, progress_callback: Callable[[int, int], None] | None = None) DecryptedRemoteBoxFile
Uploads
PreparedFileto theRemoteBox.- Arguments:
- pf (
PreparedFile): PreparedFile to upload. You should recieve it via
DecryptedLocalBox.prepare_file.- progress_callback (
Callable[[int, int], None], optional): A callback function accepting two parameters: (downloaded_bytes, total).
- pf (
- async search_file(sf: SearchFilter, mainkey: MainKey | None = None, dlb: DecryptedLocalBox | None = None, cache_preview: bool = True, return_imported_as_erbf: bool = False, reverse: bool = True) AsyncGenerator[EncryptedRemoteBoxFile | DecryptedRemoteBoxFile, None]
This method used to search for files in your
RemoteBox.- Arguments:
- sf (
SearchFilter): SearchFilterwith kwargs you like.- mainkey (
MainKey, optional): MainKeyfor thisRemoteBox.- dlb (
DecryptedLocalBox, optional): LocalBox associated with this
RemoteBox. We will takeMainKeyfrom it.- cache_preview (
bytes, optional): Will cache preview in file object if
True.- return_imported_as_erbf (
bool, optional): If specified, will yield files that generator can’t decrypt (imported) as
EncryptedRemoteBoxFile.- reverse (
bool, optional): If set to
True(by default), the remote files will be returned in reverse order (from oldest to newest, instead of the default newest to oldest).
- sf (
Note
If
dlbandmainkeynot specified, then method will search only forEncryptedRemoteBoxFile.You may ignore this kwargs if you call this method on
DecryptedRemoteBoxclass.
- property tc: TelegramClient
Returns
TelegramClient
- class tgbox.api.remote.EncryptedRemoteBoxFile(sended_file: Message, tc: TelegramClient, cache_preview: bool = True, defaults: DefaultsTableWrapper | RemoteBoxDefaults | None = None)
Bases:
objectClass that represents encrypted remote file. Without decryption you can only retrieve basic information, like Prefix, Verbyte, BoxSalt, FileSalt, sender & etc.
More information you can get from docs. Typically you don’t need to use this class.
Retrieving:
from asyncio import run as asyncio_run from tgbox.api import get_remotebox, get_localbox async def main(): dlb = await get_localbox(basekey) drb = await get_remotebox(dlb) erbf = await drb.get_file( id = await dlb.get_last_file_id(), decrypt = False ) print(erbf.file_salt.hex()) print(erbf.box_salt.hex()) asyncio_run(main())
- property box_channel: Channel
Returns RemoteBox
Channelobject.
- property box_channel_id: int
Returns ID of the RemoteBox
Channel.
- property box_salt: bytes | None
Returns BoxSalt or
Noneif not initialized
- async decrypt(key: MainKey | FileKey | ImportKey | BaseKey, erase_encrypted_metadata: bool | None = True) DecryptedRemoteBoxFile
Returns
DecryptedRemoteBoxFile.- Arguments:
- key (
MainKey,FileKey,ImportKey,BaseKey): Decryption key. All, except
FileKeywill be used to makeFileKeyfor this file.- erase_encrypted_metadata (
bool, optional): Will remove metadata from the parent
EncryptedRemoteBoxFileafter decryption to save more RAM ifTrue. You can call.init()method on it to load it again.
- key (
- property defaults: DefaultsTableWrapper | RemoteBoxDefaults
Will return
DefaultsTableWrapperorRemoteBoxDefaults.
- async delete() None
TOTALLY removes file from RemoteBox. You and all participants of the
EncryptedRemoteBoxwill lose access to it FOREVER. This action can’t be undone. You need to have rights for this action.Note
If you want to delete file only from your LocalBox then you can use the same
delete()method on your LocalBoxFile.
- property file: File
Returns Telethon’s
Fileobject.
- property file_file_name: bytes
Returns remote file name.
- property file_iv: bytes | None
Returns File IV or
Noneif not initialized
- property file_salt: bytes | None
Returns FileSalt or
Noneif not initialized
- property file_size: int
Returns size of the
FilefromMessageobject.
- property fingerprint: bytes | None
Returns file fingerprint (hash of file path plus mainkey) or
None
- get_requestkey(mainkey: MainKey) RequestKey
Returns
RequestKeyfor this file. You should use this method if you want to decrypt other’sEncryptedRemoteBoxFile.- Arguments:
- mainkey (
MainKey): To make a
RequestKeyfor other’s RemoteBoxFile you need to have your Box. Take key from yourDecryptedLocalBoxand specify it here.
- mainkey (
- property id: int
Returns message id.
- property imported: bool
Returns
Trueif file was imported from other RemoteBox.Falseotherwise.
- async init(verify_prefix: bool = True) EncryptedRemoteBoxFile
This method will download and set raw RemoteBoxFile metadata. If metadata length is bigger than
self.defaults.METADATA_MAXthenerrors.LimitExceededwill be raised.- Arguments:
- verify_prefix (
bool, optional): If
True, will check that file has adefaults.PREFIXin metadata, and if not, will raise aNotATgboxFileexception.
- verify_prefix (
- property initialized: bool
Returns
Trueif class was initialized.
- property message: Message
Returns Telethon’s
Messageobject.
- property prefix: bytes | None
Returns file prefix or
Noneif not initialized
- property sender: str | None
Returns post author if sign messages is enabled in
Channel,Noneotherwise
- property tc: TelegramClient
Returns
TelegramClient
- property upload_time: int | None
Returns upload time or
Noneif not initialized
- property version_byte: bytes | None
Returns Verbyte or
Noneif not initialized
- async tgbox.api.remote.get_remotebox(dlb: DecryptedLocalBox | None = None, tc: TelegramClient | None = None, entity: int | str | PeerChannel | None = None, proxy: tuple | list | dict | None = None) EncryptedRemoteBox | DecryptedRemoteBox
Returns
EncryptedRemoteBoxorDecryptedRemoteBoxif you specifydlb.Note
Must be specified at least
dlbortcwithentity.- Arguments:
- dlb (
DecryptedLocalBox, optional): Should be specified if
tcisNone.- tc (
TelegramClient, optional): Should be specified if
dlbisNone.entityshould be specified withtc.Note that
tcmust be already connected with Telegram viaawait tc.connect().- entity (
PeerChannel,int,str, optional): Can be
ChannelID, Username orPeerChannel. Will be used if specified. Must be specified withtc.- proxy (tuple, list, dict, optional):
An iterable consisting of the proxy info. If connection is one of MTProxy, then it should contain MTProxy credentials: (‘hostname’, port, ‘secret’). Otherwise, it’s meant to store function parameters for PySocks, like (type, ‘hostname’, port). See https://github.com/Anorov/PySocks#usage-1 for more info.
- dlb (
- async tgbox.api.remote.make_remotebox(tc: TelegramClient, box_name: str | None = 'TGBOX', rb_prefix: str | None = 'TGBOX[01]: ', box_image: PathLike | str | None = PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/tgbox/checkouts/1.2/tgbox/other/tgbox_logo.png'), box_salt: bytes | None = None) EncryptedRemoteBox
Function used for making
RemoteBox.- Arguments:
- tc (
TelegramClient): Account to make private Telegram channel. You must be signed in via
log_in().- box_name (
str, optional): Name of your Local and Remote boxes.
defaults.DEF_TGBOX_NAMEby default.- rb_prefix (
str, optional): Prefix of your RemoteBox.
defaults.REMOTEBOX_PREFIXby default.- box_image (
PathLike, optional): PathLiketo image that will be used asChannelphoto of yourRemoteBox.Can be setted to
Noneif you don’t want to setChannelphoto.- box_salt (
bytes, optional): Random 32 bytes. Will be used in
MainKeycreation. Default iscrypto.get_rnd_bytes().
- tc (
tgbox.api.db module
This module stores wrappers around Tgbox SQL DB.
- class tgbox.api.db.SqlTableWrapper(aiosql_conn, table_name: str)
Bases:
objectA low-level wrapper to SQLite Tables.
- async commit() None
- async count_rows() int
Execute
SELECT count(*) from TABLE_NAME
- async execute(sql_tuple: tuple, commit: bool = True)
- async insert(*args, sql_statement: str | None = None, commit: bool = True, ignore: bool = False) None
If
sql_statementisn’t specified, then will be usedINSERT INTO TABLE_NAME values (...).This method doesn’t check if you insert correct data or correct amount of it, you should know DB structure.
If
ignorespecified, will be usedINSERT OR IGNOREinstead ofINSERTto silently ignore errors.
- async select(sql_tuple: tuple | None = None) AsyncGenerator
If
sql_tupleisn’t specified, then will be used(SELECT * FROM TABLE_NAME, ())statement.
- async select_once(sql_tuple: tuple | None = None) tuple
Will return first row which match the
sql_tuple, seeselect()method forsql_tupledetails.
- property table_name: str
Returns table name
- class tgbox.api.db.TgboxDB(db_path: PathLike | str)
Bases:
object- async close() None
Will close TgboxDB
- property closed: bool
This method will return
Noneif DB wasn’t opened, False if it’s still opened, True if it’s was closed.
- property db_path: PathLike
Returns path to TgboxDB file
- property initialized: bool
Will return True if TgboxDB is initialized
- property name: str
Returns TgboxDB name
tgbox.api.utils module
Module with utils for api package.
- class tgbox.api.utils.DefaultsTableWrapper(tgbox_db: TgboxDB)
Bases:
objectThis little class will wrap around the DEFAULTS table of TGBOX DB and will fetch all contents of it.
You can await the
changecoroutine to change default values to your own.- async change(key: str, value) None
This method can change the defaults values
- Arguments:
- key (
str): Key to change, i.e METADATA_MAX.
- value:
Key’s new value.
- key (
Warning
We don’t verify here that value type corresponds to real type of Key or that value doesn’t overflow the allowed value maximum. Be sure to specify the correct Key values.
Example:
from asyncio import run as asyncio_run from tgbox.defaults import DEF_TGBOX_NAME from tgbox.api.db import TgboxDB from tgbox.api.utils import DefaultsTableWrapper async def main(): # Make a DefaultsTableWrapper object tdb = await TgboxDB(DEF_TGBOX_NAME).init() dtw = await DefaultsTableWrapper(tdb).init() # Change METADATA_MAX to the max allowed size dtw.change('METADATA_MAX', 256**3-1) # Access DTW from the DecryptedLocalBox ... # Some code was omited here # Change the default download path dlb.defaults.change('DOWNLOAD_PATH', 'Downloads') asyncio_run(main())
- async init() DefaultsTableWrapper
Fetch the defaults and initialize
- property initialized: bool
- class tgbox.api.utils.DirectoryRoot
Bases:
objectType used to specify that you want to access absolute local directory root.
This class doesn’t have any methods, please use it only for
lbd.iterdir
- class tgbox.api.utils.PreparedFile(dlb: tgbox.api.local.DecryptedLocalBox, file: BinaryIO, filekey: tgbox.keys.FileKey, filesize: int, filepath: PathLike, filesalt: bytes, fingerprint: bytes, metadata: bytes, imported: bool)
Bases:
objectThis dataclass store data needed for upload by
DecryptedRemoteBox.push_filein future.Usually it’s only for internal use.
- file: BinaryIO
- filekey: tgbox.keys.FileKey
- filepath: PathLike
- filesalt: bytes
- filesize: int
- fingerprint: bytes
- imported: bool
- metadata: bytes
- set_file_id(id: int)
You should set ID after pushing to remote
- set_upload_time(upload_time: int)
You should set time after pushing to remote
- class tgbox.api.utils.RemoteBoxDefaults(METADATA_MAX: int, FILE_PATH_MAX: int, DEF_UNK_FOLDER: str | os.PathLike, DEF_NO_FOLDER: str | os.PathLike, DOWNLOAD_PATH: str | os.PathLike)
Bases:
object- DEF_NO_FOLDER: str | PathLike
- DEF_UNK_FOLDER: str | PathLike
- DOWNLOAD_PATH: str | PathLike
- FILE_PATH_MAX: int
- METADATA_MAX: int
- class tgbox.api.utils.TelegramClient(api_id: int, api_hash: str, phone_number: str | None = None, session: str | StringSession | None = None, **kwargs)
Bases:
TelegramClientA little extension to the
telethon.TelegramClient.This class inherits Telethon’s TelegramClient and support all features that has
telethon.TelegramClient.Typical usage:
from asyncio import run as asyncio_run from tgbox.api import TelegramClient, make_remotebox from getpass import getpass # For hidden input PHONE_NUMBER = '+10000000000' # Your phone number API_ID = 1234567 # Your API_ID: https://my.telegram.org API_HASH = '00000000000000000000000000000000' # Your API_HASH async def main(): tc = TelegramClient( phone_number = PHONE_NUMBER, api_id = API_ID, api_hash = API_HASH ) await tc.connect() await tc.send_code() await tc.log_in( code = int(input('Code: ')), password = getpass('Pass: ') ) erb = await make_remotebox(tc) asyncio_run(main())
- action(entity: hints.EntityLike, action: Union[str, types.TypeSendMessageAction], *, delay: float = 4, auto_cancel: bool = True) Union[_ChatAction, Coroutine]
Returns a context-manager object to represent a “chat action”.
Chat actions indicate things like “user is typing”, “user is uploading a photo”, etc.
If the action is
'cancel', you should justawaitthe result, since it makes no sense to use a context-manager for it.See the example below for intended usage.
- Arguments
- entity (entity):
The entity where the action should be showed in.
- action (str | :tl:`SendMessageAction`):
The action to show. You can either pass a instance of :tl:`SendMessageAction` or better, a string used while:
'typing': typing a text message.'contact': choosing a contact.'game': playing a game.'location': choosing a geo location.'sticker': choosing a sticker.'record-audio': recording a voice note. You may use'record-voice'as alias.'record-round': recording a round video.'record-video': recording a normal video.'audio': sending an audio file (voice note or song). You may use'voice'and'song'as aliases.'round': uploading a round video.'video': uploading a video file.'photo': uploading a photo.'document': uploading a document file. You may use'file'as alias.'cancel': cancel any pending action in this chat.
Invalid strings will raise a
ValueError.- delay (int | float):
The delay, in seconds, to wait between sending actions. For example, if the delay is 5 and it takes 7 seconds to do something, three requests will be made at 0s, 5s, and 7s to cancel the action.
- auto_cancel (bool):
Whether the action should be cancelled once the context manager exists or not. The default is True, since you don’t want progress to be shown when it has already completed.
- Returns
Either a context-manager object or a coroutine.
- Example
# Type for 2 seconds, then send a message async with client.action(chat, 'typing'): await asyncio.sleep(2) await client.send_message(chat, 'Hello world! I type slow ^^') # Cancel any previous action await client.action(chat, 'cancel') # Upload a document, showing its progress (most clients ignore this) async with client.action(chat, 'document') as action: await client.send_file(chat, zip_file, progress_callback=action.progress)
- add_event_handler(callback: Callable[[Any], Any], event: EventBuilder = None)
Registers a new event handler callback.
The callback will be called when the specified event occurs.
- Arguments
- callback (callable):
The callable function accepting one parameter to be used.
Note that if you have used telethon.events.register in the callback,
eventwill be ignored, and instead the events you previously registered will be used.- event (_EventBuilder | type, optional):
The event builder class or instance to be used, for instance
events.NewMessage.If left unspecified, telethon.events.raw.Raw (the :tl:`Update` objects with no further processing) will be passed instead.
- Example
from telethon import TelegramClient, events client = TelegramClient(...) async def handler(event): ... client.add_event_handler(handler, events.NewMessage)
- static build_reply_markup(buttons: ReplyKeyboardHide | ReplyKeyboardForceReply | ReplyKeyboardMarkup | ReplyInlineMarkup | KeyboardButton | KeyboardButtonUrl | KeyboardButtonCallback | KeyboardButtonRequestPhone | KeyboardButtonRequestGeoLocation | KeyboardButtonSwitchInline | KeyboardButtonGame | KeyboardButtonBuy | KeyboardButtonUrlAuth | InputKeyboardButtonUrlAuth | KeyboardButtonRequestPoll | InputKeyboardButtonUserProfile | KeyboardButtonUserProfile | KeyboardButtonWebView | KeyboardButtonSimpleWebView | KeyboardButtonRequestPeer | Button | Sequence[KeyboardButton | KeyboardButtonUrl | KeyboardButtonCallback | KeyboardButtonRequestPhone | KeyboardButtonRequestGeoLocation | KeyboardButtonSwitchInline | KeyboardButtonGame | KeyboardButtonBuy | KeyboardButtonUrlAuth | InputKeyboardButtonUrlAuth | KeyboardButtonRequestPoll | InputKeyboardButtonUserProfile | KeyboardButtonUserProfile | KeyboardButtonWebView | KeyboardButtonSimpleWebView | KeyboardButtonRequestPeer | Button] | Sequence[Sequence[KeyboardButton | KeyboardButtonUrl | KeyboardButtonCallback | KeyboardButtonRequestPhone | KeyboardButtonRequestGeoLocation | KeyboardButtonSwitchInline | KeyboardButtonGame | KeyboardButtonBuy | KeyboardButtonUrlAuth | InputKeyboardButtonUrlAuth | KeyboardButtonRequestPoll | InputKeyboardButtonUserProfile | KeyboardButtonUserProfile | KeyboardButtonWebView | KeyboardButtonSimpleWebView | KeyboardButtonRequestPeer | Button]] | None, inline_only: bool = False) ReplyKeyboardHide | ReplyKeyboardForceReply | ReplyKeyboardMarkup | ReplyInlineMarkup | None
Builds a :tl:`ReplyInlineMarkup` or :tl:`ReplyKeyboardMarkup` for the given buttons.
Does nothing if either no buttons are provided or the provided argument is already a reply markup.
You should consider using this method if you are going to reuse the markup very often. Otherwise, it is not necessary.
This method is not asynchronous (don’t use
awaiton it).- Arguments
- buttons (hints.MarkupLike):
The button, list of buttons, array of buttons or markup to convert into a markup.
- inline_only (bool, optional):
Whether the buttons must be inline buttons only or not.
- Example
from telethon import Button markup = client.build_reply_markup(Button.inline('hi')) # later await client.send_message(chat, 'click me', buttons=markup)
- async catch_up()
“Catches up” on the missed updates while the client was offline. You should call this method after registering the event handlers so that the updates it loads can by processed by your script.
This can also be used to forcibly fetch new updates if there are any.
- Example
await client.catch_up()
- async connect() None
Connects to Telegram.
Note
Connect means connect and nothing else, and only one low-level request is made to notify Telegram about which layer we will be using.
Before Telegram sends you updates, you need to make a high-level request, like client.get_me() <telethon.client.users.UserMethods.get_me>, as described in https://core.telegram.org/api/updates.
- Example
try: await client.connect() except OSError: print('Failed to connect')
- conversation(entity: hints.EntityLike, *, timeout: float = 60, total_timeout: float = None, max_messages: int = 100, exclusive: bool = True, replies_are_responses: bool = True) Conversation
Creates a Conversation <telethon.tl.custom.conversation.Conversation> with the given entity.
Note
This Conversation API has certain shortcomings, such as lacking persistence, poor interaction with other event handlers, and overcomplicated usage for anything beyond the simplest case.
If you plan to interact with a bot without handlers, this works fine, but when running a bot yourself, you may instead prefer to follow the advice from https://stackoverflow.com/a/62246569/.
This is not the same as just sending a message to create a “dialog” with them, but rather a way to easily send messages and await for responses or other reactions. Refer to its documentation for more.
- Arguments
- entity (entity):
The entity with which a new conversation should be opened.
- timeout (int | float, optional):
The default timeout (in seconds) per action to be used. You may also override this timeout on a per-method basis. By default each action can take up to 60 seconds (the value of this timeout).
- total_timeout (int | float, optional):
The total timeout (in seconds) to use for the whole conversation. This takes priority over per-action timeouts. After these many seconds pass, subsequent actions will result in
asyncio.TimeoutError.- max_messages (int, optional):
The maximum amount of messages this conversation will remember. After these many messages arrive in the specified chat, subsequent actions will result in
ValueError.- exclusive (bool, optional):
By default, conversations are exclusive within a single chat. That means that while a conversation is open in a chat, you can’t open another one in the same chat, unless you disable this flag.
If you try opening an exclusive conversation for a chat where it’s already open, it will raise
AlreadyInConversationError.- replies_are_responses (bool, optional):
Whether replies should be treated as responses or not.
If the setting is enabled, calls to conv.get_response <telethon.tl.custom.conversation.Conversation.get_response> and a subsequent call to conv.get_reply <telethon.tl.custom.conversation.Conversation.get_reply> will return different messages, otherwise they may return the same message.
Consider the following scenario with one outgoing message, 1, and two incoming messages, the second one replying:
Hello! <1 2> (reply to 1) Hi! 3> (reply to 1) How are you?
And the following code:
async with client.conversation(chat) as conv: msg1 = await conv.send_message('Hello!') msg2 = await conv.get_response() msg3 = await conv.get_reply()
With the setting enabled,
msg2will be'Hi!'andmsg3be'How are you?'since replies are also responses, and a response was already returned.With the setting disabled, both
msg2andmsg3will be'Hi!'since one is a response and also a reply.
- Returns
A Conversation <telethon.tl.custom.conversation.Conversation>.
- Example
# <you> denotes outgoing messages you sent # <usr> denotes incoming response messages with bot.conversation(chat) as conv: # <you> Hi! conv.send_message('Hi!') # <usr> Hello! hello = conv.get_response() # <you> Please tell me your name conv.send_message('Please tell me your name') # <usr> ? name = conv.get_response().raw_text while not any(x.isalpha() for x in name): # <you> Your name didn't have any letters! Try again conv.send_message("Your name didn't have any letters! Try again") # <usr> Human name = conv.get_response().raw_text # <you> Thanks Human! conv.send_message('Thanks {}!'.format(name))
- async delete_dialog(entity: hints.EntityLike, *, revoke: bool = False)
Deletes a dialog (leaves a chat or channel).
This method can be used as a user and as a bot. However, bots will only be able to use it to leave groups and channels (trying to delete a private conversation will do nothing).
See also Dialog.delete() <telethon.tl.custom.dialog.Dialog.delete>.
- Arguments
- entity (entities):
The entity of the dialog to delete. If it’s a chat or channel, you will leave it. Note that the chat itself is not deleted, only the dialog, because you left it.
- revoke (bool, optional):
On private chats, you may revoke the messages from the other peer too. By default, it’s False. Set it to True to delete the history for both.
This makes no difference for bot accounts, who can only leave groups and channels.
- Returns
The :tl:`Updates` object that the request produces, or nothing for private conversations.
- Example
# Deleting the first dialog dialogs = await client.get_dialogs(5) await client.delete_dialog(dialogs[0]) # Leaving a channel by username await client.delete_dialog('username')
- async delete_messages(entity: hints.EntityLike, message_ids: Union[hints.MessageIDLike, Sequence[hints.MessageIDLike]], *, revoke: bool = True) Sequence[types.messages.AffectedMessages]
Deletes the given messages, optionally “for everyone”.
See also Message.delete() <telethon.tl.custom.message.Message.delete>.
Warning
This method does not validate that the message IDs belong to the chat that you passed! It’s possible for the method to delete messages from different private chats and small group chats at once, so make sure to pass the right IDs.
- Arguments
- entity (entity):
From who the message will be deleted. This can actually be None for normal chats, but must be present for channels and megagroups.
- message_ids (list | int | Message <telethon.tl.custom.message.Message>):
The IDs (or ID) or messages to be deleted.
- revoke (bool, optional):
Whether the message should be deleted for everyone or not. By default it has the opposite behaviour of official clients, and it will delete the message for everyone.
Since 24 March 2019, you can also revoke messages of any age (i.e. messages sent long in the past) the other person sent in private conversations (and of course your messages too).
Disabling this has no effect on channels or megagroups, since it will unconditionally delete the message for everyone.
- Returns
A list of :tl:`AffectedMessages`, each item being the result for the delete calls of the messages in chunks of 100 each.
- Example
await client.delete_messages(chat, messages)
- disconnect()
Disconnects from Telegram.
If the event loop is already running, this method returns a coroutine that you should await on your own code; otherwise the loop is ran until said coroutine completes.
Event handlers which are currently running will be cancelled before this function returns (in order to properly clean-up their tasks). In particular, this means that using
disconnectin a handler will cause code after thedisconnectto never run. If this is needed, consider spawning a separate task to do the remaining work.- Example
# You don't need to use this if you used "with client" await client.disconnect()
- property disconnected: Future
Property with a
Futurethat resolves upon disconnection.- Example
# Wait for a disconnection to occur try: await client.disconnected except OSError: print('Error on disconnect')
- async download_file(input_location: hints.FileLike, file: hints.OutFileLike = None, *, part_size_kb: float = None, file_size: int = None, progress_callback: hints.ProgressCallback = None, dc_id: int = None, key: bytes = None, iv: bytes = None) bytes | None
Low-level method to download files from their input location.
Note
Generally, you should instead use download_media. This method is intended to be a bit more low-level.
- Arguments
- input_location (:tl:`InputFileLocation`):
The file location from which the file will be downloaded. See telethon.utils.get_input_location source for a complete list of supported types.
- file (str | file, optional):
The output file path, directory, or stream-like object. If the path exists and is a file, it will be overwritten.
If the file path is None or bytes, then the result will be saved in memory and returned as bytes.
- part_size_kb (int, optional):
Chunk size when downloading files. The larger, the less requests will be made (up to 512KB maximum).
- file_size (int, optional):
The file size that is about to be downloaded, if known. Only used if
progress_callbackis specified.- progress_callback (callable, optional):
A callback function accepting two parameters:
(downloaded bytes, total). Note that thetotalis the providedfile_size.- dc_id (int, optional):
The data center the library should connect to in order to download the file. You shouldn’t worry about this.
- key (‘bytes’, optional):
In case of an encrypted upload (secret chats) a key is supplied
- iv (‘bytes’, optional):
In case of an encrypted upload (secret chats) an iv is supplied
- Example
# Download a file and print its header data = await client.download_file(input_file, bytes) print(data[:16])
- async download_media(message: hints.MessageLike, file: hints.FileLike = None, *, thumb: Union[int, types.TypePhotoSize] = None, progress_callback: hints.ProgressCallback = None) str | bytes | None
Downloads the given media from a message object.
Note that if the download is too slow, you should consider installing
cryptg(throughpip install cryptg) so that decrypting the received data is done in C instead of Python (much faster).See also Message.download_media() <telethon.tl.custom.message.Message.download_media>.
- Arguments
- message (Message <telethon.tl.custom.message.Message> | :tl:`Media`):
The media or message containing the media that will be downloaded.
- file (str | file, optional):
The output file path, directory, or stream-like object. If the path exists and is a file, it will be overwritten. If file is the type bytes, it will be downloaded in-memory and returned as a bytestring (i.e.
file=bytes, without parentheses or quotes).- progress_callback (callable, optional):
A callback function accepting two parameters:
(received bytes, total).- thumb (int | :tl:`PhotoSize`, optional):
Which thumbnail size from the document or photo to download, instead of downloading the document or photo itself.
If it’s specified but the file does not have a thumbnail, this method will return None.
The parameter should be an integer index between
0andlen(sizes).0will download the smallest thumbnail, andlen(sizes) - 1will download the largest thumbnail. You can also use negative indices, which work the same as they do in Python’s list.You can also pass the :tl:`PhotoSize` instance to use. Alternatively, the thumb size type str may be used.
In short, use
thumb=0if you want the smallest thumbnail andthumb=-1if you want the largest thumbnail.Note
The largest thumbnail may be a video instead of a photo, as they are available since layer 116 and are bigger than any of the photos.
- Returns
None if no media was provided, or if it was Empty. On success the file path is returned since it may differ from the one given.
- Example
path = await client.download_media(message) await client.download_media(message, filename) # or path = await message.download_media() await message.download_media(filename) # Downloading to memory blob = await client.download_media(message, bytes) # Printing download progress def callback(current, total): print('Downloaded', current, 'out of', total, 'bytes: {:.2%}'.format(current / total)) await client.download_media(message, progress_callback=callback)
- async download_profile_photo(entity: hints.EntityLike, file: hints.FileLike = None, *, download_big: bool = True) str | None
Downloads the profile photo from the given user, chat or channel.
- Arguments
- entity (entity):
From who the photo will be downloaded.
Note
This method expects the full entity (which has the data to download the photo), not an input variant.
It’s possible that sometimes you can’t fetch the entity from its input (since you can get errors like
ChannelPrivateError) but you already have it through another call, like getting a forwarded message from it.- file (str | file, optional):
The output file path, directory, or stream-like object. If the path exists and is a file, it will be overwritten. If file is the type bytes, it will be downloaded in-memory and returned as a bytestring (i.e.
file=bytes, without parentheses or quotes).- download_big (bool, optional):
Whether to use the big version of the available photos.
- Returns
None if no photo was provided, or if it was Empty. On success the file path is returned since it may differ from the one given.
- Example
# Download your own profile photo path = await client.download_profile_photo('me') print(path)
- async edit_2fa(current_password: str = None, new_password: str = None, *, hint: str = '', email: str = None, email_code_callback: Callable[[int], str] = None) bool
Changes the 2FA settings of the logged in user.
Review carefully the parameter explanations before using this method.
Note that this method may be incredibly slow depending on the prime numbers that must be used during the process to make sure that everything is safe.
Has no effect if both current and new password are omitted.
- Arguments
- current_password (str, optional):
The current password, to authorize changing to
new_password. Must be set if changing existing 2FA settings. Must not be set if 2FA is currently disabled. Passing this by itself will remove 2FA (if correct).- new_password (str, optional):
The password to set as 2FA. If 2FA was already enabled,
current_passwordmust be set. Leaving this blank or None will remove the password.- hint (str, optional):
Hint to be displayed by Telegram when it asks for 2FA. Leaving unspecified is highly discouraged. Has no effect if
new_passwordis not set.- email (str, optional):
Recovery and verification email. If present, you must also set email_code_callback, else it raises
ValueError.- email_code_callback (callable, optional):
If an email is provided, a callback that returns the code sent to it must also be set. This callback may be asynchronous. It should return a string with the code. The length of the code will be passed to the callback as an input parameter.
If the callback returns an invalid code, it will raise
CodeInvalidError.
- Returns
True if successful, False otherwise.
- Example
# Setting a password for your account which didn't have await client.edit_2fa(new_password='I_<3_Telethon') # Removing the password await client.edit_2fa(current_password='I_<3_Telethon')
- async edit_admin(entity: hints.EntityLike, user: hints.EntityLike, *, change_info: bool = None, post_messages: bool = None, edit_messages: bool = None, delete_messages: bool = None, ban_users: bool = None, invite_users: bool = None, pin_messages: bool = None, add_admins: bool = None, manage_call: bool = None, anonymous: bool = None, is_admin: bool = None, title: str = None) Updates
Edits admin permissions for someone in a chat.
Raises an error if a wrong combination of rights are given (e.g. you don’t have enough permissions to grant one).
Unless otherwise stated, permissions will work in channels and megagroups.
- Arguments
- entity (entity):
The channel, megagroup or chat where the promotion should happen.
- user (entity):
The user to be promoted.
- change_info (bool, optional):
Whether the user will be able to change info.
- post_messages (bool, optional):
Whether the user will be able to post in the channel. This will only work in broadcast channels.
- edit_messages (bool, optional):
Whether the user will be able to edit messages in the channel. This will only work in broadcast channels.
- delete_messages (bool, optional):
Whether the user will be able to delete messages.
- ban_users (bool, optional):
Whether the user will be able to ban users.
- invite_users (bool, optional):
Whether the user will be able to invite users. Needs some testing.
- pin_messages (bool, optional):
Whether the user will be able to pin messages.
- add_admins (bool, optional):
Whether the user will be able to add admins.
- manage_call (bool, optional):
Whether the user will be able to manage group calls.
- anonymous (bool, optional):
Whether the user will remain anonymous when sending messages. The sender of the anonymous messages becomes the group itself.
Note
Users may be able to identify the anonymous admin by its custom title, so additional care is needed when using both
anonymousand custom titles. For example, if multiple anonymous admins share the same title, users won’t be able to distinguish them.- is_admin (bool, optional):
Whether the user will be an admin in the chat. This will only work in small group chats. Whether the user will be an admin in the chat. This is the only permission available in small group chats, and when used in megagroups, all non-explicitly set permissions will have this value.
Essentially, only passing
is_admin=Truewill grant all permissions, but you can still disable those you need.- title (str, optional):
The custom title (also known as “rank”) to show for this admin. This text will be shown instead of the “admin” badge. This will only work in channels and megagroups.
When left unspecified or empty, the default localized “admin” badge will be shown.
- Returns
The resulting :tl:`Updates` object.
- Example
# Allowing `user` to pin messages in `chat` await client.edit_admin(chat, user, pin_messages=True) # Granting all permissions except for `add_admins` await client.edit_admin(chat, user, is_admin=True, add_admins=False)
- async edit_folder(entity: hints.EntitiesLike = None, folder: int | Sequence[int] = None, *, unpack=None) Updates
Edits the folder used by one or more dialogs to archive them.
- Arguments
- entity (entities):
The entity or list of entities to move to the desired archive folder.
- folder (int):
The folder to which the dialog should be archived to.
If you want to “archive” a dialog, use
folder=1.If you want to “un-archive” it, use
folder=0.You may also pass a list with the same length as entities if you want to control where each entity will go.
- unpack (int, optional):
If you want to unpack an archived folder, set this parameter to the folder number that you want to delete.
When you unpack a folder, all the dialogs inside are moved to the folder number 0.
You can only use this parameter if the other two are not set.
- Returns
The :tl:`Updates` object that the request produces.
- Example
# Archiving the first 5 dialogs dialogs = await client.get_dialogs(5) await client.edit_folder(dialogs, 1) # Un-archiving the third dialog (archiving to folder 0) await client.edit_folder(dialog[2], 0) # Moving the first dialog to folder 0 and the second to 1 dialogs = await client.get_dialogs(2) await client.edit_folder(dialogs, [0, 1]) # Un-archiving all dialogs await client.edit_folder(unpack=1)
- async edit_message(entity: Union[hints.EntityLike, types.Message], message: hints.MessageLike = None, text: str = None, *, parse_mode: str = (), attributes: Sequence[types.TypeDocumentAttribute] = None, formatting_entities: List[MessageEntityUnknown | MessageEntityMention | MessageEntityHashtag | MessageEntityBotCommand | MessageEntityUrl | MessageEntityEmail | MessageEntityBold | MessageEntityItalic | MessageEntityCode | MessageEntityPre | MessageEntityTextUrl | MessageEntityMentionName | InputMessageEntityMentionName | MessageEntityPhone | MessageEntityCashtag | MessageEntityUnderline | MessageEntityStrike | MessageEntityBlockquote | MessageEntityBankCard | MessageEntitySpoiler | MessageEntityCustomEmoji] | None = None, link_preview: bool = True, file: hints.FileLike = None, thumb: hints.FileLike = None, force_document: bool = False, buttons: hints.MarkupLike | None = None, supports_streaming: bool = False, schedule: hints.DateLike = None) types.Message
Edits the given message to change its text or media.
See also Message.edit() <telethon.tl.custom.message.Message.edit>.
- Arguments
- entity (entity | Message <telethon.tl.custom.message.Message>):
From which chat to edit the message. This can also be the message to be edited, and the entity will be inferred from it, so the next parameter will be assumed to be the message text.
You may also pass a :tl:`InputBotInlineMessageID` or :tl:`InputBotInlineMessageID64`, which is the only way to edit messages that were sent after the user selects an inline query result.
- message (int | Message <telethon.tl.custom.message.Message> | str):
The ID of the message (or Message <telethon.tl.custom.message.Message> itself) to be edited. If the entity was a Message <telethon.tl.custom.message.Message>, then this message will be treated as the new text.
- text (str, optional):
The new text of the message. Does nothing if the entity was a Message <telethon.tl.custom.message.Message>.
- parse_mode (object, optional):
See the TelegramClient.parse_mode <telethon.client.messageparse.MessageParseMethods.parse_mode> property for allowed values. Markdown parsing will be used by default.
- attributes (list, optional):
Optional attributes that override the inferred ones, like :tl:`DocumentAttributeFilename` and so on.
- formatting_entities (list, optional):
A list of message formatting entities. When provided, the
parse_modeis ignored.- link_preview (bool, optional):
Should the link preview be shown?
- file (str | bytes | file | media, optional):
The file object that should replace the existing media in the message.
- thumb (str | bytes | file, optional):
Optional JPEG thumbnail (for documents). Telegram will ignore this parameter unless you pass a
.jpgfile! The file must also be small in dimensions and in disk size. Successful thumbnails were files below 20kB and 320x320px. Width/height and dimensions/size ratios may be important. For Telegram to accept a thumbnail, you must provide the dimensions of the underlying media throughattributes=with :tl:`DocumentAttributesVideo` or by installing the optionalhachoirdependency.- force_document (bool, optional):
Whether to send the given file as a document or not.
- buttons (list, custom.Button <telethon.tl.custom.button.Button>, :tl:`KeyboardButton`):
The matrix (list of lists), row list or button to be shown after sending the message. This parameter will only work if you have signed in as a bot. You can also pass your own :tl:`ReplyMarkup` here.
- supports_streaming (bool, optional):
Whether the sent video supports streaming or not. Note that Telegram only recognizes as streamable some formats like MP4, and others like AVI or MKV will not work. You should convert these to MP4 before sending if you want them to be streamable. Unsupported formats will result in
VideoContentTypeError.- schedule (hints.DateLike, optional):
If set, the message won’t be edited immediately, and instead it will be scheduled to be automatically edited at a later time.
Note that this parameter will have no effect if you are trying to edit a message that was sent via inline bots.
- Returns
The edited Message <telethon.tl.custom.message.Message>, unless entity was a :tl:`InputBotInlineMessageID` or :tl:`InputBotInlineMessageID64` in which case this method returns a boolean.
- Raises
MessageAuthorRequiredErrorif you’re not the author of the message but tried editing it anyway.MessageNotModifiedErrorif the contents of the message were not modified at all.MessageIdInvalidErrorif the ID of the message is invalid (the ID itself may be correct, but the message with that ID cannot be edited). For example, when trying to edit messages with a reply markup (or clear markup) this error will be raised.- Example
message = await client.send_message(chat, 'hello') await client.edit_message(chat, message, 'hello!') # or await client.edit_message(chat, message.id, 'hello!!') # or await client.edit_message(message, 'hello!!!')
- async edit_permissions(entity: hints.EntityLike, user: Optional[hints.EntityLike] = None, until_date: hints.DateLike = None, *, view_messages: bool = True, send_messages: bool = True, send_media: bool = True, send_stickers: bool = True, send_gifs: bool = True, send_games: bool = True, send_inline: bool = True, embed_link_previews: bool = True, send_polls: bool = True, change_info: bool = True, invite_users: bool = True, pin_messages: bool = True) Updates
Edits user restrictions in a chat.
Set an argument to False to apply a restriction (i.e. remove the permission), or omit them to use the default True (i.e. don’t apply a restriction).
Raises an error if a wrong combination of rights are given (e.g. you don’t have enough permissions to revoke one).
By default, each boolean argument is True, meaning that it is true that the user has access to the default permission and may be able to make use of it.
If you set an argument to False, then a restriction is applied regardless of the default permissions.
It is important to note that True does not mean grant, only “don’t restrict”, and this is where the default permissions come in. A user may have not been revoked the
pin_messagespermission (it is True) but they won’t be able to use it if the default permissions don’t allow it either.- Arguments
- entity (entity):
The channel or megagroup where the restriction should happen.
- user (entity, optional):
If specified, the permission will be changed for the specific user. If left as None, the default chat permissions will be updated.
- until_date (DateLike, optional):
When the user will be unbanned.
If the due date or duration is longer than 366 days or shorter than 30 seconds, the ban will be forever. Defaults to
0(ban forever).- view_messages (bool, optional):
Whether the user is able to view messages or not. Forbidding someone from viewing messages equals to banning them. This will only work if
useris set.- send_messages (bool, optional):
Whether the user is able to send messages or not.
- send_media (bool, optional):
Whether the user is able to send media or not.
- send_stickers (bool, optional):
Whether the user is able to send stickers or not.
- send_gifs (bool, optional):
Whether the user is able to send animated gifs or not.
- send_games (bool, optional):
Whether the user is able to send games or not.
- send_inline (bool, optional):
Whether the user is able to use inline bots or not.
- embed_link_previews (bool, optional):
Whether the user is able to enable the link preview in the messages they send. Note that the user will still be able to send messages with links if this permission is removed, but these links won’t display a link preview.
- send_polls (bool, optional):
Whether the user is able to send polls or not.
- change_info (bool, optional):
Whether the user is able to change info or not.
- invite_users (bool, optional):
Whether the user is able to invite other users or not.
- pin_messages (bool, optional):
Whether the user is able to pin messages or not.
- Returns
The resulting :tl:`Updates` object.
- Example
from datetime import timedelta # Banning `user` from `chat` for 1 minute await client.edit_permissions(chat, user, timedelta(minutes=1), view_messages=False) # Banning `user` from `chat` forever await client.edit_permissions(chat, user, view_messages=False) # Kicking someone (ban + un-ban) await client.edit_permissions(chat, user, view_messages=False) await client.edit_permissions(chat, user)
- async end_takeout(success: bool) bool
Finishes the current takeout session.
- Arguments
- success (bool):
Whether the takeout completed successfully or not.
- Returns
True if the operation was successful, False otherwise.
- Example
await client.end_takeout(success=False)
- property flood_sleep_threshold
- async forward_messages(entity: hints.EntityLike, messages: Union[hints.MessageIDLike, Sequence[hints.MessageIDLike]], from_peer: hints.EntityLike = None, *, background: bool = None, with_my_score: bool = None, silent: bool = None, as_album: bool = None, schedule: hints.DateLike = None) Sequence[types.Message]
Forwards the given messages to the specified entity.
If you want to “forward” a message without the forward header (the “forwarded from” text), you should use send_message with the original message instead. This will send a copy of it.
See also Message.forward_to() <telethon.tl.custom.message.Message.forward_to>.
- Arguments
- entity (entity):
To which entity the message(s) will be forwarded.
- messages (list | int | Message <telethon.tl.custom.message.Message>):
The message(s) to forward, or their integer IDs.
- from_peer (entity):
If the given messages are integer IDs and not instances of the
Messageclass, this must be specified in order for the forward to work. This parameter indicates the entity from which the messages should be forwarded.- silent (bool, optional):
Whether the message should notify people with sound or not. Defaults to False (send with a notification sound unless the person has the chat muted). Set it to True to alter this behaviour.
- background (bool, optional):
Whether the message should be forwarded in background.
- with_my_score (bool, optional):
Whether forwarded should contain your game score.
- as_album (bool, optional):
This flag no longer has any effect.
- schedule (hints.DateLike, optional):
If set, the message(s) won’t forward immediately, and instead they will be scheduled to be automatically sent at a later time.
- Returns
The list of forwarded Message <telethon.tl.custom.message.Message>, or a single one if a list wasn’t provided as input.
Note that if all messages are invalid (i.e. deleted) the call will fail with
MessageIdInvalidError. If only some are invalid, the list will have None instead of those messages.- Example
# a single one await client.forward_messages(chat, message) # or await client.forward_messages(chat, message_id, from_chat) # or await message.forward_to(chat) # multiple await client.forward_messages(chat, messages) # or await client.forward_messages(chat, message_ids, from_chat) # Forwarding as a copy await client.send_message(chat, message)
- async get_admin_log(entity: hints.EntityLike, limit: float = None, *, max_id: int = 0, min_id: int = 0, search: str = None, admins: hints.EntitiesLike = None, join: bool = None, leave: bool = None, invite: bool = None, restrict: bool = None, unrestrict: bool = None, ban: bool = None, unban: bool = None, promote: bool = None, demote: bool = None, info: bool = None, settings: bool = None, pinned: bool = None, edit: bool = None, delete: bool = None, group_call: bool = None) _AdminLogIter
Same as iter_admin_log(), but returns a
listinstead.- Example
# Get a list of deleted message events which said "heck" events = await client.get_admin_log(channel, search='heck', delete=True) # Print the old message before it was deleted print(events[0].old)
- async get_dialogs(limit: float = None, *, offset_date: hints.DateLike = None, offset_id: int = 0, offset_peer: hints.EntityLike = <telethon.tl.types.InputPeerEmpty object>, ignore_pinned: bool = False, ignore_migrated: bool = False, folder: int = None, archived: bool = None) _DialogsIter
Same as iter_dialogs(), but returns a TotalList <telethon.helpers.TotalList> instead.
- Example
# Get all open conversation, print the title of the first dialogs = await client.get_dialogs() first = dialogs[0] print(first.title) # Use the dialog somewhere else await client.send_message(first, 'hi') # Getting only non-archived dialogs (both equivalent) non_archived = await client.get_dialogs(folder=0) non_archived = await client.get_dialogs(archived=False) # Getting only archived dialogs (both equivalent) archived = await client.get_dialogs(folder=1) archived = await client.get_dialogs(archived=True)
- async get_drafts(entity: hints.EntitiesLike = None) hints.TotalList
Same as iter_drafts(), but returns a list instead.
- Example
# Get drafts, print the text of the first drafts = await client.get_drafts() print(drafts[0].text) # Get the draft in your chat draft = await client.get_drafts('me') print(drafts.text)
- async get_entity(entity: hints.EntitiesLike) hints.Entity
Turns the given entity into a valid Telegram :tl:`User`, :tl:`Chat` or :tl:`Channel`. You can also pass a list or iterable of entities, and they will be efficiently fetched from the network.
- Arguments
- entity (str | int | :tl:`Peer` | :tl:`InputPeer`):
If a username is given, the username will be resolved making an API call every time. Resolving usernames is an expensive operation and will start hitting flood waits around 50 usernames in a short period of time.
If you want to get the entity for a cached username, you should first get_input_entity(username) <get_input_entity> which will use the cache), and then use get_entity with the result of the previous call.
Similar limits apply to invite links, and you should use their ID instead.
Using phone numbers (from people in your contact list), exact names, integer IDs or :tl:`Peer` rely on a get_input_entity first, which in turn needs the entity to be in cache, unless a :tl:`InputPeer` was passed.
Unsupported types will raise
TypeError.If the entity can’t be found,
ValueErrorwill be raised.
- Returns
:tl:`User`, :tl:`Chat` or :tl:`Channel` corresponding to the input entity. A list will be returned if more than one was given.
- Example
from telethon import utils me = await client.get_entity('me') print(utils.get_display_name(me)) chat = await client.get_input_entity('username') async for message in client.iter_messages(chat): ... # Note that you could have used the username directly, but it's # good to use get_input_entity if you will reuse it a lot. async for message in client.iter_messages('username'): ... # Note that for this to work the phone number must be in your contacts some_id = await client.get_peer_id('+34123456789')
- async get_input_entity(peer: hints.EntityLike) types.TypeInputPeer
Turns the given entity into its input entity version.
Most requests use this kind of :tl:`InputPeer`, so this is the most suitable call to make for those cases. Generally you should let the library do its job and don’t worry about getting the input entity first, but if you’re going to use an entity often, consider making the call:
- Arguments
- entity (str | int | :tl:`Peer` | :tl:`InputPeer`):
If a username or invite link is given, the library will use the cache. This means that it’s possible to be using a username that changed or an old invite link (this only happens if an invite link for a small group chat is used after it was upgraded to a mega-group).
If the username or ID from the invite link is not found in the cache, it will be fetched. The same rules apply to phone numbers (
'+34 123456789') from people in your contact list.If an exact name is given, it must be in the cache too. This is not reliable as different people can share the same name and which entity is returned is arbitrary, and should be used only for quick tests.
If a positive integer ID is given, the entity will be searched in cached users, chats or channels, without making any call.
If a negative integer ID is given, the entity will be searched exactly as either a chat (prefixed with
-) or as a channel (prefixed with-100).If a :tl:`Peer` is given, it will be searched exactly in the cache as either a user, chat or channel.
If the given object can be turned into an input entity directly, said operation will be done.
Unsupported types will raise
TypeError.If the entity can’t be found,
ValueErrorwill be raised.
- Returns
:tl:`InputPeerUser`, :tl:`InputPeerChat` or :tl:`InputPeerChannel` or :tl:`InputPeerSelf` if the parameter is
'me'or'self'.If you need to get the ID of yourself, you should use get_me with
input_peer=True) instead.- Example
# If you're going to use "username" often in your code # (make a lot of calls), consider getting its input entity # once, and then using the "user" everywhere instead. user = await client.get_input_entity('username') # The same applies to IDs, chats or channels. chat = await client.get_input_entity(-123456789)
- async get_me(input_peer: bool = False) Union[types.User, types.InputPeerUser]
Gets “me”, the current :tl:`User` who is logged in.
If the user has not logged in yet, this method returns None.
- Arguments
- input_peer (bool, optional):
Whether to return the :tl:`InputPeerUser` version or the normal :tl:`User`. This can be useful if you just need to know the ID of yourself.
- Returns
Your own :tl:`User`.
- Example
me = await client.get_me() print(me.username)
- async get_messages(entity: hints.EntityLike, limit: float = None, *, offset_date: hints.DateLike = None, offset_id: int = 0, max_id: int = 0, min_id: int = 0, add_offset: int = 0, search: str = None, filter: Union[types.TypeMessagesFilter, Type[types.TypeMessagesFilter]] = None, from_user: hints.EntityLike = None, wait_time: float = None, ids: Union[int, Sequence[int]] = None, reverse: bool = False, reply_to: int = None, scheduled: bool = False) Union[_MessagesIter, _IDsIter]
Same as iter_messages(), but returns a TotalList <telethon.helpers.TotalList> instead.
If the limit is not set, it will be 1 by default unless both min_id and max_id are set (as named arguments), in which case the entire range will be returned.
This is so because any integer limit would be rather arbitrary and it’s common to only want to fetch one message, but if a range is specified it makes sense that it should return the entirety of it.
If ids is present in the named arguments and is not a list, a single Message <telethon.tl.custom.message.Message> will be returned for convenience instead of a list.
- Example
# Get 0 photos and print the total to show how many photos there are from telethon.tl.types import InputMessagesFilterPhotos photos = await client.get_messages(chat, 0, filter=InputMessagesFilterPhotos) print(photos.total) # Get all the photos photos = await client.get_messages(chat, None, filter=InputMessagesFilterPhotos) # Get messages by ID: message_1337 = await client.get_messages(chat, ids=1337)
- async get_participants(entity: hints.EntityLike, limit: float = None, *, search: str = '', filter: types.TypeChannelParticipantsFilter = None, aggressive: bool = False) _ParticipantsIter
Same as iter_participants(), but returns a TotalList <telethon.helpers.TotalList> instead.
- Example
users = await client.get_participants(chat) print(users[0].first_name) for user in users: if user.username is not None: print(user.username)
- async get_peer_id(peer: hints.EntityLike, add_mark: bool = True) int
Gets the ID for the given entity.
This method needs to be
asyncbecause peer supports usernames, invite-links, phone numbers (from people in your contact list), etc.If
add_mark is False, then a positive ID will be returned instead. By default, bot-API style IDs (signed) are returned.- Example
print(await client.get_peer_id('me'))
- async get_permissions(entity: hints.EntityLike, user: hints.EntityLike = None) Optional[custom.ParticipantPermissions]
Fetches the permissions of a user in a specific chat or channel or get Default Restricted Rights of Chat or Channel.
Note
This request has to fetch the entire chat for small group chats, which can get somewhat expensive, so use of a cache is advised.
- Arguments
- entity (entity):
The channel or chat the user is participant of.
- user (entity, optional):
Target user.
- Returns
A ParticipantPermissions <telethon.tl.custom.participantpermissions.ParticipantPermissions> instance. Refer to its documentation to see what properties are available.
- Example
permissions = await client.get_permissions(chat, user) if permissions.is_admin: # do something # Get Banned Permissions of Chat await client.get_permissions(chat)
- async get_profile_photos(entity: hints.EntityLike, limit: int = None, *, offset: int = 0, max_id: int = 0) _ProfilePhotoIter
Same as iter_profile_photos(), but returns a TotalList <telethon.helpers.TotalList> instead.
- Example
# Get the photos of a channel photos = await client.get_profile_photos(channel) # Download the oldest photo await client.download_media(photos[-1])
- async get_stats(entity: hints.EntityLike, message: Union[int, types.Message] = None)
Retrieves statistics from the given megagroup or broadcast channel.
Note that some restrictions apply before being able to fetch statistics, in particular the channel must have enough members (for megagroups, this requires at least 500 members).
- Arguments
- entity (entity):
The channel from which to get statistics.
- message (int |
Message, optional): The message ID from which to get statistics, if your goal is to obtain the statistics of a single message.
- Raises
If the given entity is not a channel (broadcast or megagroup), a TypeError is raised.
If there are not enough members (poorly named) errors such as
telethon.errors.ChatAdminRequiredErrorwill appear.- Returns
If both
entityandmessagewere provided, returns :tl:`MessageStats`. Otherwise, either :tl:`BroadcastStats` or :tl:`MegagroupStats`, depending on whether the input belonged to a broadcast channel or megagroup.- Example
# Some megagroup or channel username or ID to fetch channel = -100123 stats = await client.get_stats(channel) print('Stats from', stats.period.min_date, 'to', stats.period.max_date, ':') print(stats.stringify())
- async inline_query(bot: hints.EntityLike, query: str, *, entity: hints.EntityLike = None, offset: str = None, geo_point: types.GeoPoint = None) InlineResults
Makes an inline query to the specified bot (
@vote New Poll).- Arguments
- bot (entity):
The bot entity to which the inline query should be made.
- query (str):
The query that should be made to the bot.
- entity (entity, optional):
The entity where the inline query is being made from. Certain bots use this to display different results depending on where it’s used, such as private chats, groups or channels.
If specified, it will also be the default entity where the message will be sent after clicked. Otherwise, the “empty peer” will be used, which some bots may not handle correctly.
- offset (str, optional):
The string offset to use for the bot.
- geo_point (:tl:`GeoPoint`, optional)
The geo point location information to send to the bot for localised results. Available under some bots.
- Returns
A list of custom.InlineResult <telethon.tl.custom.inlineresult.InlineResult>.
- Example
# Make an inline query to @like results = await client.inline_query('like', 'Do you like Telethon?') # Send the first result to some chat message = await results[0].click('TelethonOffTopic')
- async is_bot() bool
Return True if the signed-in user is a bot, False otherwise.
- Example
if await client.is_bot(): print('Beep') else: print('Hello')
- is_connected() bool
Returns True if the user has connected.
This method is not asynchronous (don’t use
awaiton it).- Example
while client.is_connected(): await asyncio.sleep(1)
- async is_user_authorized() bool
Returns True if the user is authorized (logged in).
- Example
if not await client.is_user_authorized(): await client.send_code_request(phone) code = input('enter code: ') await client.sign_in(phone, code)
- iter_admin_log(entity: hints.EntityLike, limit: float = None, *, max_id: int = 0, min_id: int = 0, search: str = None, admins: hints.EntitiesLike = None, join: bool = None, leave: bool = None, invite: bool = None, restrict: bool = None, unrestrict: bool = None, ban: bool = None, unban: bool = None, promote: bool = None, demote: bool = None, info: bool = None, settings: bool = None, pinned: bool = None, edit: bool = None, delete: bool = None, group_call: bool = None) _AdminLogIter
Iterator over the admin log for the specified channel.
The default order is from the most recent event to to the oldest.
Note that you must be an administrator of it to use this method.
If none of the filters are present (i.e. they all are None), all event types will be returned. If at least one of them is True, only those that are true will be returned.
- Arguments
- entity (entity):
The channel entity from which to get its admin log.
- limit (int | None, optional):
Number of events to be retrieved.
The limit may also be None, which would eventually return the whole history.
- max_id (int):
All the events with a higher (newer) ID or equal to this will be excluded.
- min_id (int):
All the events with a lower (older) ID or equal to this will be excluded.
- search (str):
The string to be used as a search query.
- admins (entity | list):
If present, the events will be filtered by these admins (or single admin) and only those caused by them will be returned.
- join (bool):
If True, events for when a user joined will be returned.
- leave (bool):
If True, events for when a user leaves will be returned.
- invite (bool):
If True, events for when a user joins through an invite link will be returned.
- restrict (bool):
If True, events with partial restrictions will be returned. This is what the API calls “ban”.
- unrestrict (bool):
If True, events removing restrictions will be returned. This is what the API calls “unban”.
- ban (bool):
If True, events applying or removing all restrictions will be returned. This is what the API calls “kick” (restricting all permissions removed is a ban, which kicks the user).
- unban (bool):
If True, events removing all restrictions will be returned. This is what the API calls “unkick”.
- promote (bool):
If True, events with admin promotions will be returned.
- demote (bool):
If True, events with admin demotions will be returned.
- info (bool):
If True, events changing the group info will be returned.
- settings (bool):
If True, events changing the group settings will be returned.
- pinned (bool):
If True, events of new pinned messages will be returned.
- edit (bool):
If True, events of message edits will be returned.
- delete (bool):
If True, events of message deletions will be returned.
- group_call (bool):
If True, events related to group calls will be returned.
- Yields
Instances of AdminLogEvent <telethon.tl.custom.adminlogevent.AdminLogEvent>.
- Example
async for event in client.iter_admin_log(channel): if event.changed_title: print('The title changed from', event.old, 'to', event.new)
- iter_dialogs(limit: float = None, *, offset_date: hints.DateLike = None, offset_id: int = 0, offset_peer: hints.EntityLike = <telethon.tl.types.InputPeerEmpty object>, ignore_pinned: bool = False, ignore_migrated: bool = False, folder: int = None, archived: bool = None) _DialogsIter
Iterator over the dialogs (open conversations/subscribed channels).
The order is the same as the one seen in official applications (first pinned, them from those with the most recent message to those with the oldest message).
- Arguments
- limit (int | None):
How many dialogs to be retrieved as maximum. Can be set to None to retrieve all dialogs. Note that this may take whole minutes if you have hundreds of dialogs, as Telegram will tell the library to slow down through a
FloodWaitError.- offset_date (datetime, optional):
The offset date to be used.
- offset_id (int, optional):
The message ID to be used as an offset.
- offset_peer (:tl:`InputPeer`, optional):
The peer to be used as an offset.
- ignore_pinned (bool, optional):
Whether pinned dialogs should be ignored or not. When set to True, these won’t be yielded at all.
- ignore_migrated (bool, optional):
Whether :tl:`Chat` that have
migrated_toa :tl:`Channel` should be included or not. By default all the chats in your dialogs are returned, but setting this to True will ignore (i.e. skip) them in the same way official applications do.- folder (int, optional):
The folder from which the dialogs should be retrieved.
If left unspecified, all dialogs (including those from folders) will be returned.
If set to
0, all dialogs that don’t belong to any folder will be returned.If set to a folder number like
1, only those from said folder will be returned.By default Telegram assigns the folder ID
1to archived chats, so you should use that if you need to fetch the archived dialogs.- archived (bool, optional):
Alias for folder. If unspecified, all will be returned, False implies
folder=0and True impliesfolder=1.
- Yields
Instances of Dialog <telethon.tl.custom.dialog.Dialog>.
- Example
# Print all dialog IDs and the title, nicely formatted async for dialog in client.iter_dialogs(): print('{:>14}: {}'.format(dialog.id, dialog.title))
- iter_download(file: hints.FileLike, *, offset: int = 0, stride: int = None, limit: int = None, chunk_size: int = None, request_size: int = 524288, file_size: int = None, dc_id: int = None)
Iterates over a file download, yielding chunks of the file.
This method can be used to stream files in a more convenient way, since it offers more control (pausing, resuming, etc.)
Note
Using a value for offset or stride which is not a multiple of the minimum allowed request_size, or if chunk_size is different from request_size, the library will need to do a bit more work to fetch the data in the way you intend it to.
You normally shouldn’t worry about this.
- Arguments
- file (hints.FileLike):
The file of which contents you want to iterate over.
- offset (int, optional):
The offset in bytes into the file from where the download should start. For example, if a file is 1024KB long and you just want the last 512KB, you would use
offset=512 * 1024.- stride (int, optional):
The stride of each chunk (how much the offset should advance between reading each chunk). This parameter should only be used for more advanced use cases.
It must be bigger than or equal to the chunk_size.
- limit (int, optional):
The limit for how many chunks will be yielded at most.
- chunk_size (int, optional):
The maximum size of the chunks that will be yielded. Note that the last chunk may be less than this value. By default, it equals to request_size.
- request_size (int, optional):
How many bytes will be requested to Telegram when more data is required. By default, as many bytes as possible are requested. If you would like to request data in smaller sizes, adjust this parameter.
Note that values outside the valid range will be clamped, and the final value will also be a multiple of the minimum allowed size.
- file_size (int, optional):
If the file size is known beforehand, you should set this parameter to said value. Depending on the type of the input file passed, this may be set automatically.
- dc_id (int, optional):
The data center the library should connect to in order to download the file. You shouldn’t worry about this.
Yields
bytes objects representing the chunks of the file if the right conditions are met, or memoryview objects instead.
- Example
# Streaming `media` to an output file # After the iteration ends, the sender is cleaned up with open('photo.jpg', 'wb') as fd: async for chunk in client.iter_download(media): fd.write(chunk) # Fetching only the header of a file (32 bytes) # You should manually close the iterator in this case. # # "stream" is a common name for asynchronous generators, # and iter_download will yield `bytes` (chunks of the file). stream = client.iter_download(media, request_size=32) header = await stream.__anext__() # "manual" version of `async for` await stream.close() assert len(header) == 32
- iter_drafts(entity: hints.EntitiesLike = None) _DraftsIter
Iterator over draft messages.
The order is unspecified.
- Arguments
- entity (hints.EntitiesLike, optional):
The entity or entities for which to fetch the draft messages. If left unspecified, all draft messages will be returned.
- Yields
Instances of Draft <telethon.tl.custom.draft.Draft>.
- Example
# Clear all drafts async for draft in client.get_drafts(): await draft.delete() # Getting the drafts with 'bot1' and 'bot2' async for draft in client.iter_drafts(['bot1', 'bot2']): print(draft.text)
- iter_messages(entity: hints.EntityLike, limit: float = None, *, offset_date: hints.DateLike = None, offset_id: int = 0, max_id: int = 0, min_id: int = 0, add_offset: int = 0, search: str = None, filter: Union[types.TypeMessagesFilter, Type[types.TypeMessagesFilter]] = None, from_user: hints.EntityLike = None, wait_time: float = None, ids: Union[int, Sequence[int]] = None, reverse: bool = False, reply_to: int = None, scheduled: bool = False) Union[_MessagesIter, _IDsIter]
Iterator over the messages for the given chat.
The default order is from newest to oldest, but this behaviour can be changed with the reverse parameter.
If either search, filter or from_user are provided, :tl:`messages.Search` will be used instead of :tl:`messages.getHistory`.
Note
Telegram’s flood wait limit for :tl:`GetHistoryRequest` seems to be around 30 seconds per 10 requests, therefore a sleep of 1 second is the default for this limit (or above).
- Arguments
- entity (entity):
The entity from whom to retrieve the message history.
It may be None to perform a global search, or to get messages by their ID from no particular chat. Note that some of the offsets will not work if this is the case.
Note that if you want to perform a global search, you must set a non-empty search string, a filter. or from_user.
- limit (int | None, optional):
Number of messages to be retrieved. Due to limitations with the API retrieving more than 3000 messages will take longer than half a minute (or even more based on previous calls).
The limit may also be None, which would eventually return the whole history.
- offset_date (datetime):
Offset date (messages previous to this date will be retrieved). Exclusive.
- offset_id (int):
Offset message ID (only messages previous to the given ID will be retrieved). Exclusive.
- max_id (int):
All the messages with a higher (newer) ID or equal to this will be excluded.
- min_id (int):
All the messages with a lower (older) ID or equal to this will be excluded.
- add_offset (int):
Additional message offset (all of the specified offsets + this offset = older messages).
- search (str):
The string to be used as a search query.
- filter (:tl:`MessagesFilter` | type):
The filter to use when returning messages. For instance, :tl:`InputMessagesFilterPhotos` would yield only messages containing photos.
- from_user (entity):
Only messages from this entity will be returned.
- wait_time (int):
Wait time (in seconds) between different :tl:`GetHistoryRequest`. Use this parameter to avoid hitting the
FloodWaitErroras needed. If left to None, it will default to 1 second only if the limit is higher than 3000.If the
idsparameter is used, this time will default to 10 seconds only if the amount of IDs is higher than 300.- ids (int, list):
A single integer ID (or several IDs) for the message that should be returned. This parameter takes precedence over the rest (which will be ignored if this is set). This can for instance be used to get the message with ID 123 from a channel. Note that if the message doesn’t exist, None will appear in its place, so that zipping the list of IDs with the messages can match one-to-one.
Note
At the time of writing, Telegram will not return :tl:`MessageEmpty` for :tl:`InputMessageReplyTo` IDs that failed (i.e. the message is not replying to any, or is replying to a deleted message). This means that it is not possible to match messages one-by-one, so be careful if you use non-integers in this parameter.
- reverse (bool, optional):
If set to True, the messages will be returned in reverse order (from oldest to newest, instead of the default newest to oldest). This also means that the meaning of offset_id and offset_date parameters is reversed, although they will still be exclusive. min_id becomes equivalent to offset_id instead of being max_id as well since messages are returned in ascending order.
You cannot use this if both entity and ids are None.
- reply_to (int, optional):
If set to a message ID, the messages that reply to this ID will be returned. This feature is also known as comments in posts of broadcast channels, or viewing threads in groups.
This feature can only be used in broadcast channels and their linked megagroups. Using it in a chat or private conversation will result in
telethon.errors.PeerIdInvalidErrorto occur.When using this parameter, the
filterandsearchparameters have no effect, since Telegram’s API doesn’t support searching messages in replies.Note
This feature is used to get replies to a message in the discussion group. If the same broadcast channel sends a message and replies to it itself, that reply will not be included in the results.
- scheduled (bool, optional):
If set to True, messages which are scheduled will be returned. All other parameter will be ignored for this, except entity.
- Yields
Instances of Message <telethon.tl.custom.message.Message>.
- Example
# From most-recent to oldest async for message in client.iter_messages(chat): print(message.id, message.text) # From oldest to most-recent async for message in client.iter_messages(chat, reverse=True): print(message.id, message.text) # Filter by sender async for message in client.iter_messages(chat, from_user='me'): print(message.text) # Server-side search with fuzzy text async for message in client.iter_messages(chat, search='hello'): print(message.id) # Filter by message type: from telethon.tl.types import InputMessagesFilterPhotos async for message in client.iter_messages(chat, filter=InputMessagesFilterPhotos): print(message.photo) # Getting comments from a post in a channel: async for message in client.iter_messages(channel, reply_to=123): print(message.chat.title, message.text)
- iter_participants(entity: hints.EntityLike, limit: float = None, *, search: str = '', filter: types.TypeChannelParticipantsFilter = None, aggressive: bool = False) _ParticipantsIter
Iterator over the participants belonging to the specified chat.
The order is unspecified.
- Arguments
- entity (entity):
The entity from which to retrieve the participants list.
- limit (int):
Limits amount of participants fetched.
- search (str, optional):
Look for participants with this string in name/username.
- filter (:tl:`ChannelParticipantsFilter`, optional):
The filter to be used, if you want e.g. only admins Note that you might not have permissions for some filter. This has no effect for normal chats or users.
Note
The filter :tl:`ChannelParticipantsBanned` will return restricted users. If you want banned users you should use :tl:`ChannelParticipantsKicked` instead.
- aggressive (bool, optional):
Does nothing. This is kept for backwards-compatibility.
There have been several changes to Telegram’s API that limits the amount of members that can be retrieved, and this was a hack that no longer works.
- Yields
The :tl:`User` objects returned by :tl:`GetParticipantsRequest` with an additional
.participantattribute which is the matched :tl:`ChannelParticipant` type for channels/megagroups or :tl:`ChatParticipants` for normal chats.- Example
# Show all user IDs in a chat async for user in client.iter_participants(chat): print(user.id) # Search by name async for user in client.iter_participants(chat, search='name'): print(user.username) # Filter by admins from telethon.tl.types import ChannelParticipantsAdmins async for user in client.iter_participants(chat, filter=ChannelParticipantsAdmins): print(user.first_name)
- iter_profile_photos(entity: hints.EntityLike, limit: int = None, *, offset: int = 0, max_id: int = 0) _ProfilePhotoIter
Iterator over a user’s profile photos or a chat’s photos.
The order is from the most recent photo to the oldest.
- Arguments
- entity (entity):
The entity from which to get the profile or chat photos.
- limit (int | None, optional):
Number of photos to be retrieved.
The limit may also be None, which would eventually all the photos that are still available.
- offset (int):
How many photos should be skipped before returning the first one.
- max_id (int):
The maximum ID allowed when fetching photos.
- Yields
Instances of :tl:`Photo`.
- Example
# Download all the profile photos of some user async for photo in client.iter_profile_photos(user): await client.download_media(photo)
- async kick_participant(entity: hints.EntityLike, user: Optional[hints.EntityLike])
Kicks a user from a chat.
Kicking yourself (
'me') will result in leaving the chat.Note
Attempting to kick someone who was banned will remove their restrictions (and thus unbanning them), since kicking is just ban + unban.
- Arguments
- entity (entity):
The channel or chat where the user should be kicked from.
- user (entity, optional):
The user to kick.
- Returns
Returns the service Message <telethon.tl.custom.message.Message> produced about a user being kicked, if any.
- Example
# Kick some user from some chat, and deleting the service message msg = await client.kick_participant(chat, user) await msg.delete() # Leaving chat await client.kick_participant(chat, 'me')
- list_event_handlers() Sequence[Tuple[Callback, EventBuilder]]
Lists all registered event handlers.
- Returns
A list of pairs consisting of
(callback, event).- Example
@client.on(events.NewMessage(pattern='hello')) async def on_greeting(event): '''Greets someone''' await event.reply('Hi') for callback, event in client.list_event_handlers(): print(id(callback), type(event))
- async log_in(password: str | None = None, code: int | str | None = None) None
Logs in to Telegram to an existing user account. You should only use this if you are not signed in yet.
- Arguments:
- password (
str, optional): Your 2FA password. You can ignore this if you don’t enabled it yet.
- code (
int, optional): The code that Telegram sent you after calling
TelegramClient.send_code()method.
- password (
- async log_out() bool
Logs out Telegram and deletes the current
*.sessionfile.The client is unusable after logging out and a new instance should be created.
- Returns
True if the operation was successful.
- Example
# Note: you will need to login again! await client.log_out()
- property loop: AbstractEventLoop
Property with the
asyncioevent loop used by this client.- Example
# Download media in the background task = client.loop.create_task(message.download_media()) # Do some work ... # Join the task (wait for it to complete) await task
- on(event: EventBuilder)
Decorator used to add_event_handler more conveniently.
- Arguments
- event (_EventBuilder | type):
The event builder class or instance to be used, for instance
events.NewMessage.
- Example
from telethon import TelegramClient, events client = TelegramClient(...) # Here we use client.on @client.on(events.NewMessage) async def handler(event): ...
- property parse_mode
This property is the default parse mode used when sending messages. Defaults to telethon.extensions.markdown. It will always be either None or an object with
parseandunparsemethods.When setting a different value it should be one of:
Object with
parseandunparsemethods.A
callableto act as the parse method.A str indicating the
parse_mode. For Markdown'md'or'markdown'may be used. For HTML,'htm'or'html'may be used.
The
parsemethod should be a function accepting a single parameter, the text to parse, and returning a tuple consisting of(parsed message str, [MessageEntity instances]).The
unparsemethod should be the inverse ofparsesuch thatassert text == unparse(*parse(text)).See :tl:`MessageEntity` for allowed message entities.
- Example
# Disabling default formatting client.parse_mode = None # Enabling HTML as the default format client.parse_mode = 'html'
- async pin_message(entity: hints.EntityLike, message: Optional[hints.MessageIDLike], *, notify: bool = False, pm_oneside: bool = False)
Pins a message in a chat.
The default behaviour is to not notify members, unlike the official applications.
See also Message.pin() <telethon.tl.custom.message.Message.pin>.
- Arguments
- entity (entity):
The chat where the message should be pinned.
- message (int | Message <telethon.tl.custom.message.Message>):
The message or the message ID to pin. If it’s None, all messages will be unpinned instead.
- notify (bool, optional):
Whether the pin should notify people or not.
- pm_oneside (bool, optional):
Whether the message should be pinned for everyone or not. By default it has the opposite behaviour of official clients, and it will pin the message for both sides, in private chats.
- Example
# Send and pin a message to annoy everyone message = await client.send_message(chat, 'Pinotifying is fun!') await client.pin_message(chat, message, notify=True)
- async qr_login(ignored_ids: List[int] = None) QRLogin
Initiates the QR login procedure.
Note that you must be connected before invoking this, as with any other request.
It is up to the caller to decide how to present the code to the user, whether it’s the URL, using the token bytes directly, or generating a QR code and displaying it by other means.
See the documentation for QRLogin to see how to proceed after this.
- Arguments
- ignored_ids (List[int]):
List of already logged-in user IDs, to prevent logging in twice with the same user.
- Returns
An instance of QRLogin.
- Example
def display_url_as_qr(url): pass # do whatever to show url as a qr to the user qr_login = await client.qr_login() display_url_as_qr(qr_login.url) # Important! You need to wait for the login to complete! await qr_login.wait() # If you have 2FA enabled, `wait` will raise `telethon.errors.SessionPasswordNeededError`. # You should except that error and call `sign_in` with the password if this happens.
- remove_event_handler(callback: Callable[[Any], Any], event: EventBuilder = None) int
Inverse operation of add_event_handler().
If no event is given, all events for this callback are removed. Returns how many callbacks were removed.
- Example
@client.on(events.Raw) @client.on(events.NewMessage) async def handler(event): ... # Removes only the "Raw" handling # "handler" will still receive "events.NewMessage" client.remove_event_handler(handler, events.Raw) # "handler" will stop receiving anything client.remove_event_handler(handler)
- async resend_code(sent_code: SentCode) SentCode
Will send you login code again. This can be used to force Telegram send you SMS or Call to dictate code.
- Arguments:
- sent_code (
SentCode): Result of the
tc.send_codeor result of thetc.resend_codemethod.
- sent_code (
Example:
tc = tgbox.api.TelegramClient(...) sent_code = await tc.send_code() sent_code = await tc.resend_code(sent_code)
- run_until_disconnected()
Runs the event loop until the library is disconnected.
It also notifies Telegram that we want to receive updates as described in https://core.telegram.org/api/updates. If an unexpected error occurs during update handling, the client will disconnect and said error will be raised.
Manual disconnections can be made by calling disconnect() <telethon.client.telegrambaseclient.TelegramBaseClient.disconnect> or sending a
KeyboardInterrupt(e.g. by pressingCtrl+Con the console window running the script).If a disconnection error occurs (i.e. the library fails to reconnect automatically), said error will be raised through here, so you have a chance to
exceptit on your own code.If the loop is already running, this method returns a coroutine that you should await on your own code.
Note
If you want to handle
KeyboardInterruptin your code, simply run the event loop in your code too in any way, such asloop.run_forever()orawait client.disconnected(e.g.loop.run_until_complete(client.disconnected)).- Example
# Blocks the current task here until a disconnection occurs. # # You will still receive updates, since this prevents the # script from exiting. await client.run_until_disconnected()
- async send_code(force_sms: bool | None = False) SentCode
Sends the Telegram code needed to login to the given phone number.
- Arguments:
- force_sms (
bool, optional): Whether to force sending as SMS.
- force_sms (
- async send_code_request(phone: str, *, force_sms: bool = False, _retry_count: int = 0) types.auth.SentCode
Sends the Telegram code needed to login to the given phone number.
- Arguments
- phone (str | int):
The phone to which the code will be sent.
- force_sms (bool, optional):
Whether to force sending as SMS. This has been deprecated. See issue #4050 for context.
- Returns
An instance of :tl:`SentCode`.
- Example
phone = '+34 123 123 123' sent = await client.send_code_request(phone) print(sent)
- async send_file(entity: hints.EntityLike, file: Union[hints.FileLike, Sequence[hints.FileLike]], *, caption: str | Sequence[str] = None, force_document: bool = False, file_size: int = None, clear_draft: bool = False, progress_callback: hints.ProgressCallback = None, reply_to: hints.MessageIDLike = None, attributes: Sequence[types.TypeDocumentAttribute] = None, thumb: hints.FileLike = None, allow_cache: bool = True, parse_mode: str = (), formatting_entities: List[MessageEntityUnknown | MessageEntityMention | MessageEntityHashtag | MessageEntityBotCommand | MessageEntityUrl | MessageEntityEmail | MessageEntityBold | MessageEntityItalic | MessageEntityCode | MessageEntityPre | MessageEntityTextUrl | MessageEntityMentionName | InputMessageEntityMentionName | MessageEntityPhone | MessageEntityCashtag | MessageEntityUnderline | MessageEntityStrike | MessageEntityBlockquote | MessageEntityBankCard | MessageEntitySpoiler | MessageEntityCustomEmoji] | None = None, voice_note: bool = False, video_note: bool = False, buttons: hints.MarkupLike | None = None, silent: bool = None, background: bool = None, supports_streaming: bool = False, schedule: hints.DateLike = None, comment_to: Union[int, types.Message] = None, ttl: int = None, nosound_video: bool = None, **kwargs) types.Message
Sends message with the given file to the specified entity.
Note
If the
hachoir3package (hachoirmodule) is installed, it will be used to determine metadata from audio and video files.If the
pillowpackage is installed and you are sending a photo, it will be resized to fit within the maximum dimensions allowed by Telegram to avoiderrors.PhotoInvalidDimensionsError. This cannot be done if you are sending :tl:`InputFile`, however.- Arguments
- entity (entity):
Who will receive the file.
- file (str | bytes | file | media):
The file to send, which can be one of:
A local file path to an in-disk file. The file name will be the path’s base name.
A bytes byte array with the file’s data to send (for example, by using
text.encode('utf-8')). A default file name will be used.A bytes io.IOBase stream over the file to send (for example, by using
open(file, 'rb')). Its.nameproperty will be used for the file name, or a default if it doesn’t have one.An external URL to a file over the internet. This will send the file as “external” media, and Telegram is the one that will fetch the media and send it.
A Bot API-like
file_id. You can convert previously sent media to file IDs for later reusing with telethon.utils.pack_bot_file_id.A handle to an existing file (for example, if you sent a message with media before, you can use its
message.mediaas a file here).A handle to an uploaded file (from upload_file).
A :tl:`InputMedia` instance. For example, if you want to send a dice use :tl:`InputMediaDice`, or if you want to send a contact use :tl:`InputMediaContact`.
To send an album, you should provide a list in this parameter.
If a list or similar is provided, the files in it will be sent as an album in the order in which they appear, sliced in chunks of 10 if more than 10 are given.
- caption (str, optional):
Optional caption for the sent media message. When sending an album, the caption may be a list of strings, which will be assigned to the files pairwise.
- force_document (bool, optional):
If left to False and the file is a path that ends with the extension of an image file or a video file, it will be sent as such. Otherwise always as a document.
- file_size (int, optional):
The size of the file to be uploaded if it needs to be uploaded, which will be determined automatically if not specified.
If the file size can’t be determined beforehand, the entire file will be read in-memory to find out how large it is.
- clear_draft (bool, optional):
Whether the existing draft should be cleared or not.
- progress_callback (callable, optional):
A callback function accepting two parameters:
(sent bytes, total).- reply_to (int | Message <telethon.tl.custom.message.Message>):
Same as reply_to from send_message.
- attributes (list, optional):
Optional attributes that override the inferred ones, like :tl:`DocumentAttributeFilename` and so on.
- thumb (str | bytes | file, optional):
Optional JPEG thumbnail (for documents). Telegram will ignore this parameter unless you pass a
.jpgfile!The file must also be small in dimensions and in disk size. Successful thumbnails were files below 20kB and 320x320px. Width/height and dimensions/size ratios may be important. For Telegram to accept a thumbnail, you must provide the dimensions of the underlying media through
attributes=with :tl:`DocumentAttributesVideo` or by installing the optionalhachoirdependency.- allow_cache (bool, optional):
This parameter currently does nothing, but is kept for backward-compatibility (and it may get its use back in the future).
- parse_mode (object, optional):
See the TelegramClient.parse_mode <telethon.client.messageparse.MessageParseMethods.parse_mode> property for allowed values. Markdown parsing will be used by default.
- formatting_entities (list, optional):
A list of message formatting entities. When provided, the
parse_modeis ignored.- voice_note (bool, optional):
If True the audio will be sent as a voice note.
- video_note (bool, optional):
If True the video will be sent as a video note, also known as a round video message.
- buttons (list, custom.Button <telethon.tl.custom.button.Button>, :tl:`KeyboardButton`):
The matrix (list of lists), row list or button to be shown after sending the message. This parameter will only work if you have signed in as a bot. You can also pass your own :tl:`ReplyMarkup` here.
- silent (bool, optional):
Whether the message should notify people with sound or not. Defaults to False (send with a notification sound unless the person has the chat muted). Set it to True to alter this behaviour.
- background (bool, optional):
Whether the message should be send in background.
- supports_streaming (bool, optional):
Whether the sent video supports streaming or not. Note that Telegram only recognizes as streamable some formats like MP4, and others like AVI or MKV will not work. You should convert these to MP4 before sending if you want them to be streamable. Unsupported formats will result in
VideoContentTypeError.- schedule (hints.DateLike, optional):
If set, the file won’t send immediately, and instead it will be scheduled to be automatically sent at a later time.
- comment_to (int | Message <telethon.tl.custom.message.Message>, optional):
Similar to
reply_to, but replies in the linked group of a broadcast channel instead (effectively leaving a “comment to” the specified message).This parameter takes precedence over
reply_to. If there is no linked chat, telethon.errors.sgIdInvalidError is raised.- ttl (int. optional):
The Time-To-Live of the file (also known as “self-destruct timer” or “self-destructing media”). If set, files can only be viewed for a short period of time before they disappear from the message history automatically.
The value must be at least 1 second, and at most 60 seconds, otherwise Telegram will ignore this parameter.
Not all types of media can be used with this parameter, such as text documents, which will fail with
TtlMediaInvalidError.- nosound_video (bool, optional):
Only applicable when sending a video file without an audio track. If set to
True, the video will be displayed in Telegram as a video. If set toFalse, Telegram will attempt to display the video as an animated gif. (It may still display as a video due to other factors.) The value is ignored if set on non-video files. This is set toTruefor albums, as gifs cannot be sent in albums.
- Returns
The Message <telethon.tl.custom.message.Message> (or messages) containing the sent file, or messages if a list of them was passed.
- Example
# Normal files like photos await client.send_file(chat, '/my/photos/me.jpg', caption="It's me!") # or await client.send_message(chat, "It's me!", file='/my/photos/me.jpg') # Voice notes or round videos await client.send_file(chat, '/my/songs/song.mp3', voice_note=True) await client.send_file(chat, '/my/videos/video.mp4', video_note=True) # Custom thumbnails await client.send_file(chat, '/my/documents/doc.txt', thumb='photo.jpg') # Only documents await client.send_file(chat, '/my/photos/photo.png', force_document=True) # Albums await client.send_file(chat, [ '/my/photos/holiday1.jpg', '/my/photos/holiday2.jpg', '/my/drawings/portrait.png' ]) # Printing upload progress def callback(current, total): print('Uploaded', current, 'out of', total, 'bytes: {:.2%}'.format(current / total)) await client.send_file(chat, file, progress_callback=callback) # Dices, including dart and other future emoji from telethon.tl import types await client.send_file(chat, types.InputMediaDice('')) await client.send_file(chat, types.InputMediaDice('🎯')) # Contacts await client.send_file(chat, types.InputMediaContact( phone_number='+34 123 456 789', first_name='Example', last_name='', vcard='' ))
- async send_message(entity: hints.EntityLike, message: hints.MessageLike = '', *, reply_to: Union[int, types.Message] = None, attributes: Sequence[types.TypeDocumentAttribute] = None, parse_mode: str | None = (), formatting_entities: List[MessageEntityUnknown | MessageEntityMention | MessageEntityHashtag | MessageEntityBotCommand | MessageEntityUrl | MessageEntityEmail | MessageEntityBold | MessageEntityItalic | MessageEntityCode | MessageEntityPre | MessageEntityTextUrl | MessageEntityMentionName | InputMessageEntityMentionName | MessageEntityPhone | MessageEntityCashtag | MessageEntityUnderline | MessageEntityStrike | MessageEntityBlockquote | MessageEntityBankCard | MessageEntitySpoiler | MessageEntityCustomEmoji] | None = None, link_preview: bool = True, file: Union[hints.FileLike, Sequence[hints.FileLike]] = None, thumb: hints.FileLike = None, force_document: bool = False, clear_draft: bool = False, buttons: hints.MarkupLike | None = None, silent: bool = None, background: bool = None, supports_streaming: bool = False, schedule: hints.DateLike = None, comment_to: Union[int, types.Message] = None, nosound_video: bool = None) types.Message
Sends a message to the specified user, chat or channel.
The default parse mode is the same as the official applications (a custom flavour of markdown).
**bold**, `code` or __italic__are available. In addition you can send[links](https://example.com)and[mentions](@username)(or using IDs like in the Bot API:[mention](tg://user?id=123456789)) andpreblocks with three backticks.Sending a
/startcommand with a parameter (like?start=data) is also done through this method. Simply send'/start data'to the bot.See also Message.respond() <telethon.tl.custom.message.Message.respond> and Message.reply() <telethon.tl.custom.message.Message.reply>.
- Arguments
- entity (entity):
To who will it be sent.
- message (str | Message <telethon.tl.custom.message.Message>):
The message to be sent, or another message object to resend.
The maximum length for a message is 35,000 bytes or 4,096 characters. Longer messages will not be sliced automatically, and you should slice them manually if the text to send is longer than said length.
- reply_to (int | Message <telethon.tl.custom.message.Message>, optional):
Whether to reply to a message or not. If an integer is provided, it should be the ID of the message that it should reply to.
- attributes (list, optional):
Optional attributes that override the inferred ones, like :tl:`DocumentAttributeFilename` and so on.
- parse_mode (object, optional):
See the TelegramClient.parse_mode <telethon.client.messageparse.MessageParseMethods.parse_mode> property for allowed values. Markdown parsing will be used by default.
- formatting_entities (list, optional):
A list of message formatting entities. When provided, the
parse_modeis ignored.- link_preview (bool, optional):
Should the link preview be shown?
- file (file, optional):
Sends a message with a file attached (e.g. a photo, video, audio or document). The
messagemay be empty.- thumb (str | bytes | file, optional):
Optional JPEG thumbnail (for documents). Telegram will ignore this parameter unless you pass a
.jpgfile! The file must also be small in dimensions and in disk size. Successful thumbnails were files below 20kB and 320x320px. Width/height and dimensions/size ratios may be important. For Telegram to accept a thumbnail, you must provide the dimensions of the underlying media throughattributes=with :tl:`DocumentAttributesVideo` or by installing the optionalhachoirdependency.- force_document (bool, optional):
Whether to send the given file as a document or not.
- clear_draft (bool, optional):
Whether the existing draft should be cleared or not.
- buttons (list, custom.Button <telethon.tl.custom.button.Button>, :tl:`KeyboardButton`):
The matrix (list of lists), row list or button to be shown after sending the message. This parameter will only work if you have signed in as a bot. You can also pass your own :tl:`ReplyMarkup` here.
All the following limits apply together:
There can be 100 buttons at most (any more are ignored).
There can be 8 buttons per row at most (more are ignored).
The maximum callback data per button is 64 bytes.
The maximum data that can be embedded in total is just over 4KB, shared between inline callback data and text.
- silent (bool, optional):
Whether the message should notify people in a broadcast channel or not. Defaults to False, which means it will notify them. Set it to True to alter this behaviour.
- background (bool, optional):
Whether the message should be send in background.
- supports_streaming (bool, optional):
Whether the sent video supports streaming or not. Note that Telegram only recognizes as streamable some formats like MP4, and others like AVI or MKV will not work. You should convert these to MP4 before sending if you want them to be streamable. Unsupported formats will result in
VideoContentTypeError.- schedule (hints.DateLike, optional):
If set, the message won’t send immediately, and instead it will be scheduled to be automatically sent at a later time.
- comment_to (int | Message <telethon.tl.custom.message.Message>, optional):
Similar to
reply_to, but replies in the linked group of a broadcast channel instead (effectively leaving a “comment to” the specified message).This parameter takes precedence over
reply_to. If there is no linked chat, telethon.errors.sgIdInvalidError is raised.- nosound_video (bool, optional):
Only applicable when sending a video file without an audio track. If set to
True, the video will be displayed in Telegram as a video. If set toFalse, Telegram will attempt to display the video as an animated gif. (It may still display as a video due to other factors.) The value is ignored if set on non-video files. This is set toTruefor albums, as gifs cannot be sent in albums.
- Returns
The sent custom.Message <telethon.tl.custom.message.Message>.
- Example
# Markdown is the default await client.send_message('me', 'Hello **world**!') # Default to another parse mode client.parse_mode = 'html' await client.send_message('me', 'Some <b>bold</b> and <i>italic</i> text') await client.send_message('me', 'An <a href="https://example.com">URL</a>') # code and pre tags also work, but those break the documentation :) await client.send_message('me', '<a href="tg://user?id=me">Mentions</a>') # Explicit parse mode # No parse mode by default client.parse_mode = None # ...but here I want markdown await client.send_message('me', 'Hello, **world**!', parse_mode='md') # ...and here I need HTML await client.send_message('me', 'Hello, <i>world</i>!', parse_mode='html') # If you logged in as a bot account, you can send buttons from telethon import events, Button @client.on(events.CallbackQuery) async def callback(event): await event.edit('Thank you for clicking {}!'.format(event.data)) # Single inline button await client.send_message(chat, 'A single button, with "clk1" as data', buttons=Button.inline('Click me', b'clk1')) # Matrix of inline buttons await client.send_message(chat, 'Pick one from this grid', buttons=[ [Button.inline('Left'), Button.inline('Right')], [Button.url('Check this site!', 'https://example.com')] ]) # Reply keyboard await client.send_message(chat, 'Welcome', buttons=[ Button.text('Thanks!', resize=True, single_use=True), Button.request_phone('Send phone'), Button.request_location('Send location') ]) # Forcing replies or clearing buttons. await client.send_message(chat, 'Reply to me', buttons=Button.force_reply()) await client.send_message(chat, 'Bye Keyboard!', buttons=Button.clear()) # Scheduling a message to be sent after 5 minutes from datetime import timedelta await client.send_message(chat, 'Hi, future!', schedule=timedelta(minutes=5))
- async send_read_acknowledge(entity: hints.EntityLike, message: Union[hints.MessageIDLike, Sequence[hints.MessageIDLike]] = None, *, max_id: int = None, clear_mentions: bool = False, clear_reactions: bool = False) bool
Marks messages as read and optionally clears mentions.
This effectively marks a message as read (or more than one) in the given conversation.
If neither message nor maximum ID are provided, all messages will be marked as read by assuming that
max_id = 0.If a message or maximum ID is provided, all the messages up to and including such ID will be marked as read (for all messages whose ID ≤ max_id).
See also Message.mark_read() <telethon.tl.custom.message.Message.mark_read>.
- Arguments
- entity (entity):
The chat where these messages are located.
- message (list | Message <telethon.tl.custom.message.Message>):
Either a list of messages or a single message.
- max_id (int):
Until which message should the read acknowledge be sent for. This has priority over the
messageparameter.- clear_mentions (bool):
Whether the mention badge should be cleared (so that there are no more mentions) or not for the given entity.
If no message is provided, this will be the only action taken.
- clear_reactions (bool):
Whether the reactions badge should be cleared (so that there are no more reaction notifications) or not for the given entity.
If no message is provided, this will be the only action taken.
- Example
# using a Message object await client.send_read_acknowledge(chat, message) # ...or using the int ID of a Message await client.send_read_acknowledge(chat, message_id) # ...or passing a list of messages to mark as read await client.send_read_acknowledge(chat, messages)
- set_proxy(proxy: tuple | dict)
Changes the proxy which will be used on next (re)connection.
Method has no immediate effects if the client is currently connected.
- The new proxy will take it’s effect on the next reconnection attempt:
on a call await client.connect() (after complete disconnect)
on auto-reconnect attempt (e.g, after previous connection was lost)
- async set_receive_updates(receive_updates)
Change the value of receive_updates.
This is an async method, because in order for Telegram to start sending updates again, a request must be made.
- async sign_in(phone: str = None, code: str | int = None, *, password: str = None, bot_token: str = None, phone_code_hash: str = None) Union[types.User, types.auth.SentCode]
Logs in to Telegram to an existing user or bot account.
You should only use this if you are not authorized yet.
This method will send the code if it’s not provided.
Note
In most cases, you should simply use start() and not this method.
- Arguments
- phone (str | int):
The phone to send the code to if no code was provided, or to override the phone that was previously used with these requests.
- code (str | int):
The code that Telegram sent. Note that if you have sent this code through the application itself it will immediately expire. If you want to send the code, obfuscate it somehow. If you’re not doing any of this you can ignore this note.
- password (str):
2FA password, should be used if a previous call raised
SessionPasswordNeededError.- bot_token (str):
Used to sign in as a bot. Not all requests will be available. This should be the hash the @BotFather gave you.
- phone_code_hash (str, optional):
The hash returned by send_code_request. This can be left as None to use the last hash known for the phone to be used.
- Returns
The signed in user, or the information about
send_code_request().- Example
phone = '+34 123 123 123' await client.sign_in(phone) # send code code = input('enter code: ') await client.sign_in(phone, code)
- async sign_up(code: str | int, first_name: str, last_name: str = '', *, phone: str = None, phone_code_hash: str = None) types.User
This method can no longer be used, and will immediately raise a
ValueError. See issue #4050 for context.
- start(phone: ~typing.Callable[[], str] = <function AuthMethods.<lambda>>, password: ~typing.Callable[[], str] = <function AuthMethods.<lambda>>, *, bot_token: str = None, force_sms: bool = False, code_callback: ~typing.Callable[[], str | int] = None, first_name: str = 'New User', last_name: str = '', max_attempts: int = 3) TelegramClient
Starts the client (connects and logs in if necessary).
By default, this method will be interactive (asking for user input if needed), and will handle 2FA if enabled too.
If the event loop is already running, this method returns a coroutine that you should await on your own code; otherwise the loop is ran until said coroutine completes.
- Arguments
- phone (str | int | callable):
The phone (or callable without arguments to get it) to which the code will be sent. If a bot-token-like string is given, it will be used as such instead. The argument may be a coroutine.
- password (str, callable, optional):
The password for 2 Factor Authentication (2FA). This is only required if it is enabled in your account. The argument may be a coroutine.
- bot_token (str):
Bot Token obtained by @BotFather to log in as a bot. Cannot be specified with
phone(only one of either allowed).- force_sms (bool, optional):
Whether to force sending the code request as SMS. This only makes sense when signing in with a phone.
- code_callback (callable, optional):
A callable that will be used to retrieve the Telegram login code. Defaults to input(). The argument may be a coroutine.
- first_name (str, optional):
The first name to be used if signing up. This has no effect if the account already exists and you sign in.
- last_name (str, optional):
Similar to the first name, but for the last. Optional.
- max_attempts (int, optional):
How many times the code/password callback should be retried or switching between signing in and signing up.
- Returns
This TelegramClient, so initialization can be chained with
.start().- Example
client = TelegramClient('anon', api_id, api_hash) # Starting as a bot account await client.start(bot_token=bot_token) # Starting as a user account await client.start(phone) # Please enter the code you received: 12345 # Please enter your password: ******* # (You are now logged in) # Starting using a context manager (this calls start()): with client: pass
- takeout(finalize: bool = True, *, contacts: bool = None, users: bool = None, chats: bool = None, megagroups: bool = None, channels: bool = None, files: bool = None, max_file_size: bool = None) TelegramClient
Returns a telethon-client which calls methods behind a takeout session.
It does so by creating a proxy object over the current client through which making requests will use :tl:`InvokeWithTakeoutRequest` to wrap them. In other words, returns the current client modified so that requests are done as a takeout:
Some of the calls made through the takeout session will have lower flood limits. This is useful if you want to export the data from conversations or mass-download media, since the rate limits will be lower. Only some requests will be affected, and you will need to adjust the wait_time of methods like client.iter_messages <telethon.client.messages.MessageMethods.iter_messages>.
By default, all parameters are None, and you need to enable those you plan to use by setting them to either True or False.
You should
except errors.TakeoutInitDelayError as e, since this exception will raise depending on the condition of the session. You can then accesse.secondsto know how long you should wait for before calling the method again.There’s also a success property available in the takeout proxy object, so from the with body you can set the boolean result that will be sent back to Telegram. But if it’s left None as by default, then the action is based on the finalize parameter. If it’s True then the takeout will be finished, and if no exception occurred during it, then True will be considered as a result. Otherwise, the takeout will not be finished and its ID will be preserved for future usage as client.session.takeout_id <telethon.sessions.abstract.Session.takeout_id>.
- Arguments
- finalize (bool):
Whether the takeout session should be finalized upon exit or not.
- contacts (bool):
Set to True if you plan on downloading contacts.
- users (bool):
Set to True if you plan on downloading information from users and their private conversations with you.
- chats (bool):
Set to True if you plan on downloading information from small group chats, such as messages and media.
- megagroups (bool):
Set to True if you plan on downloading information from megagroups (channels), such as messages and media.
- channels (bool):
Set to True if you plan on downloading information from broadcast channels, such as messages and media.
- files (bool):
Set to True if you plan on downloading media and you don’t only wish to export messages.
- max_file_size (int):
The maximum file size, in bytes, that you plan to download for each message with media.
- Example
from telethon import errors try: async with client.takeout() as takeout: await client.get_messages('me') # normal call await takeout.get_messages('me') # wrapped through takeout (less limits) async for message in takeout.iter_messages(chat, wait_time=0): ... # Do something with the message except errors.TakeoutInitDelayError as e: print('Must wait', e.seconds, 'before takeout')
- async unpin_message(entity: hints.EntityLike, message: Optional[hints.MessageIDLike] = None, *, notify: bool = False)
Unpins a message in a chat.
If no message ID is specified, all pinned messages will be unpinned.
See also Message.unpin() <telethon.tl.custom.message.Message.unpin>.
- Arguments
- entity (entity):
The chat where the message should be pinned.
- message (int | Message <telethon.tl.custom.message.Message>):
The message or the message ID to unpin. If it’s None, all messages will be unpinned instead.
- Example
# Unpin all messages from a chat await client.unpin_message(chat)
- async upload_file(file: hints.FileLike, *, part_size_kb: float = None, file_size: int = None, file_name: str = None, use_cache: type = None, key: bytes = None, iv: bytes = None, progress_callback: hints.ProgressCallback = None) types.TypeInputFile
Uploads a file to Telegram’s servers, without sending it.
Note
Generally, you want to use send_file instead.
This method returns a handle (an instance of :tl:`InputFile` or :tl:`InputFileBig`, as required) which can be later used before it expires (they are usable during less than a day).
Uploading a file will simply return a “handle” to the file stored remotely in the Telegram servers, which can be later used on. This will not upload the file to your own chat or any chat at all.
- Arguments
- file (str | bytes | file):
The path of the file, byte array, or stream that will be sent. Note that if a byte array or a stream is given, a filename or its type won’t be inferred, and it will be sent as an “unnamed application/octet-stream”.
- part_size_kb (int, optional):
Chunk size when uploading files. The larger, the less requests will be made (up to 512KB maximum).
- file_size (int, optional):
The size of the file to be uploaded, which will be determined automatically if not specified.
If the file size can’t be determined beforehand, the entire file will be read in-memory to find out how large it is.
- file_name (str, optional):
The file name which will be used on the resulting InputFile. If not specified, the name will be taken from the
fileand if this is not a str, it will be"unnamed".- use_cache (type, optional):
This parameter currently does nothing, but is kept for backward-compatibility (and it may get its use back in the future).
- key (‘bytes’, optional):
In case of an encrypted upload (secret chats) a key is supplied
- iv (‘bytes’, optional):
In case of an encrypted upload (secret chats) an iv is supplied
- progress_callback (callable, optional):
A callback function accepting two parameters:
(sent bytes, total).When sending an album, the callback will receive a number between 0 and the amount of files as the “sent” parameter, and the amount of files as the “total”. Note that the first parameter will be a floating point number to indicate progress within a file (e.g.
2.5means it has sent 50% of the third file, because it’s between 2 and 3).
- Returns
:tl:`InputFileBig` if the file size is larger than 10MB, InputSizedFile <telethon.tl.custom.inputsizedfile.InputSizedFile> (subclass of :tl:`InputFile`) otherwise.
- Example
# Photos as photo and document file = await client.upload_file('photo.jpg') await client.send_file(chat, file) # sends as photo await client.send_file(chat, file, force_document=True) # sends as document file.name = 'not a photo.jpg' await client.send_file(chat, file, force_document=True) # document, new name # As song or as voice note file = await client.upload_file('song.ogg') await client.send_file(chat, file) # sends as song await client.send_file(chat, file, voice_note=True) # sends as voice note
- async tgbox.api.utils.search_generator(sf: SearchFilter, it_messages: AsyncGenerator | None = None, lb: tgbox.api.local.DecryptedLocalBox | None = None, cache_preview: bool = True) AsyncGenerator
Generator used to search for files in dlb and rb. It’s only for internal use and you shouldn’t use it in your own projects.
If file is exported from other RemoteBox and was imported to your LocalBox, then you can specify
dlbaslb. AsyncGenerator will try to getFileKeyand decryptEncryptedRemoteBoxFile. Otherwise imported file will be ignored.
tgbox.crypto module
This module stores all cryptography used in API.
- class tgbox.crypto.AESwState(key: bytes | Key, iv: bytes | None = None)
Bases:
object- decrypt(data: bytes, unpad: bool = True) bytes
Decrypts
datawith AES CBC.datalength must must be evenly divisible by 16.
- encrypt(data: bytes, pad: bool = True, concat_iv: bool = True) bytes
Encrypts
datawith AES CBC.If
concat_ivisTrue, then first 16 bytes of result will be IV.
- property mode: int
Returns
1if mode is encryption and2if decryption.
- tgbox.crypto.get_rnd_bytes(length: int = 32) bytes
Returns
os.urandom(length).
tgbox.errors module
This module stores all Tgbox-unique exceptions.
- exception tgbox.errors.AESError
Bases:
TgboxExceptionInvalid AES configuration
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.AlreadyImported
Bases:
TgboxExceptionLocalBox have file with same ID
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.BrokenDatabase
Bases:
TgboxExceptionCan’t parse SQLite DB
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.ConcatError
Bases:
TgboxExceptionYou must concat metadata before using OpenPretender
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.DurationImpossible
Bases:
TgboxExceptionCan’t get media duration
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.FingerprintExists
Bases:
TgboxExceptionFile with the same file path already uploaded to the Box
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.InUseException
Bases:
TgboxExceptionThe DB already exists and in use
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.IncorrectKey
Bases:
TgboxExceptionSpecified key is invalid.
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.InvalidFile
Bases:
TgboxExceptionSpecified file is invalid
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.LimitExceeded
Bases:
TgboxExceptionValue is out of allowed range
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.ModeInvalid
Bases:
TgboxExceptionYou should use only decryption or encryption per class
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.NoPlaceLeftForMetadata
Bases:
TgboxExceptionYour edited metadata overflow Telegram caption limit
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.NotATgboxFile
Bases:
TgboxExceptionThis Telegram message isn’t a TGBOX file
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.NotEnoughRights
Bases:
TgboxExceptionYou don’t have rigths for this action
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.NotImported
Bases:
TgboxExceptionThe file you try to retrieve wasn’t imported yet
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.NotInitializedError
Bases:
TgboxExceptionThe class you try to use isn’t initialized
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.PathIsDirectory
Bases:
TgboxExceptionSpecified path is Directory
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.PreviewImpossible
Bases:
TgboxExceptionCan’t create file preview
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.RemoteBoxInaccessible
Bases:
TgboxExceptionThe RemoteBox you try to use is inaccessible
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.RemoteFileNotFound
Bases:
TgboxExceptionSeems that there is no requested by you file
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception tgbox.errors.SessionUnregistered
Bases:
TgboxExceptionSession you trying to use was disconnected
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
tgbox.fastelethon module
- Copied from Mautrix-Telegram
github.com/tulir/mautrix-telegram/
- Copied again from Painor GitHub
gist.github.com/painor/7e74de80ae0c819d3e9abcf9989a8dd6
Big thanks to all contributors of this module.
- class tgbox.fastelethon.DownloadSender(client: TelegramClient, sender: MTProtoSender, file: Document | Photo | InputDocumentFileLocation | InputPeerPhotoFileLocation | InputFileLocation | InputPhotoFileLocation, offset: int, limit: int, stride: int, count: int)
Bases:
object- client: TelegramClient
- disconnect() Awaitable[None]
- async next() bytes | None
- remaining: int
- request: GetFileRequest
- sender: MTProtoSender
- stride: int
- class tgbox.fastelethon.ParallelTransferrer(client: TelegramClient, dc_id: int | None = None)
Bases:
object- auth_key: AuthKey
- client: TelegramClient
- dc_id: int
- async download(file: Document | Photo | InputDocumentFileLocation | InputPeerPhotoFileLocation | InputFileLocation | InputPhotoFileLocation, file_size: int, part_size_kb: int | None = None, offset: int | None = None, connection_count: int | None = None) AsyncGenerator[bytes, None]
- async finish_upload() None
- async init_upload(file_id: int, file_size: int, part_size_kb: float | None = None, connection_count: int | None = None) Tuple[int, int, bool]
- loop: AbstractEventLoop
- senders: List[DownloadSender | UploadSender] | None
- async upload(part: bytes) None
- upload_ticker: int
- class tgbox.fastelethon.UploadSender(client: TelegramClient, sender: MTProtoSender, file_id: int, part_count: int, big: bool, index: int, stride: int, loop: AbstractEventLoop)
Bases:
object- client: TelegramClient
- async disconnect() None
- loop: AbstractEventLoop
- async next(data: bytes) None
- part_count: int
- previous: Task | None
- request: SaveFilePartRequest | SaveBigFilePartRequest
- sender: MTProtoSender
- stride: int
- async tgbox.fastelethon.download_file(client: TelegramClient, location: Document | Photo | InputDocumentFileLocation | InputPeerPhotoFileLocation | InputFileLocation | InputPhotoFileLocation, request_size: int = 524288, offset: int | None = None, progress_callback: callable | None = None) AsyncGenerator[bytes, None]
- async tgbox.fastelethon.stream_file(file_to_stream: BinaryIO, chunk_size=1024)
file_to_stream.readcan be coroutine.
- async tgbox.fastelethon.upload_file(client: TelegramClient, file: BinaryIO, progress_callback: callable | None = None, file_name: str = 'document', file_size: int | None = None, part_size_kb: int = 512) InputFile | InputFileBig
tgbox.keys module
This module stores all keys and keys making functions.
- class tgbox.keys.BaseKey(key: bytes)
Bases:
KeyThis
Keyused forMainKeycreation and clonedRemoteBoxdecryption. In API it’s usually result ofkeys.make_basekey.- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
- class tgbox.keys.EncryptedMainkey(key: bytes)
Bases:
KeyThis class represents encrypted mainkey. When you clone other’s
RemoteBox, it’sMainKeyencrypts with yourBaseKey.- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
- class tgbox.keys.FileKey(key: bytes)
Bases:
KeyFileKeyis used for encryptingRemoteBoxfiles and information about them in your LocalBox. If you share oneFileKey, other people will be able to decrypt only file, that key corresponds to, and no more. They will not be able to get folder of this file. Only those, who haveMainKeycan access folder information from file’s Metadata.Note
Usually you will not work with this code, API converts
MainKeytoFileKeyunder the hood, but you can make it withkeys.make_filekey.- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
- class tgbox.keys.ImportKey(key: bytes)
Bases:
KeyRun
help(tgbox.keys.make_importkey)for info.- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
- class tgbox.keys.Key(key: bytes, key_type: int)
Bases:
objectMetaclass that represents all keys.
- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
- class tgbox.keys.MainKey(key: bytes)
Bases:
KeyMainKeymay be reffered as “BoxKey”. This key encrypts all BoxData and used inFileKeycreation. It’s one of your most importantKey, as leakage of it will result in compromising all your encrypted files inRemoteBox& LocalBox.When you clone other’s
RemoteBox, Session data encrypts withBaseKey, notMainKey.Usually you will see this
Keyas a result ofkeys.make_mainkeyfunction.- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
- class tgbox.keys.Phrase(phrase: bytes | str)
Bases:
objectThis class represents passphrase
- classmethod generate(words_count: int = 6) Phrase
Generates passphrase
- Arguments:
- words_count (
int, optional): Words count in
Phrase.
- words_count (
- property phrase: bytes
Returns currrent raw phrase
- class tgbox.keys.RequestKey(key: bytes)
Bases:
KeyRun
help(tgbox.keys.make_requestkey)for info.- classmethod decode(encoded_key: str) BaseKey | MainKey | RequestKey | ShareKey | ImportKey | FileKey | EncryptedMainkey
Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
- encode() str
Encode raw key with
urlsafe_b64encodeand add prefix.
- hex() str
Returns key in hex represenation
- property key: bytes
Returns key in raw
- property key_type: int
Returns current key type
- property key_types: dict
Returns all key types
Bases:
KeyRun
help(tgbox.keys.make_sharekey)for info.Decodes Key by prefix and returns
Keyin one ofKeyclasses.B:
BaseKeyM:MainKeyR:RequestKeyS:ShareKeyI:ImportKeyF:FileKeyE:EncryptedMainkey- Key example:
MSGVsbG8hIEkgYW0gTm9uISBJdCdzIDI5LzExLzIwMjE=. You can decode it withKey.decode.
Encode raw key with
urlsafe_b64encodeand add prefix.
Returns key in hex represenation
Returns key in raw
Returns current key type
Returns all key types
- tgbox.keys.make_basekey(phrase: bytes | Phrase, *, salt: bytes | int = Scrypt.SALT, n: int | None = Scrypt.N, r: int | None = Scrypt.R, p: int | None = Scrypt.P, dklen: int | None = Scrypt.DKLEN) BaseKey
Function for retrieving BaseKeys. Uses
sha256(scrypt(*)).Warning
RAM consumption is calculated by
128 * r * (n + p + 2).- Arguments:
- phrase (
bytes,Phrase): Passphrase from which
BaseKeywill be created.- salt (
bytes,int, optional): Scrypt Salt.
- n (
int, optional): Scrypt N.
- r (
int, optional): Scrypt R.
- p (
int, optional): Scrypt P.
- dklen (
int, optional): Scrypt dklen.
- phrase (
- tgbox.keys.make_filekey(mainkey: MainKey, file_salt: bytes) FileKey
Function for retrieving filekeys.
Every LocalBoxFile have random generated on encryption FileSalt. Key for file encryption we create as
sha256(mainkey + FileSalt).Thanks to this, you can share the key with which the file was encrypted (filekey) without revealing your mainkey.
- tgbox.keys.make_importkey(key: MainKey | BaseKey, sharekey: ShareKey, *, box_salt: bytes | None = None, file_salt: bytes | None = None) ImportKey
Note
You may want to know what is
RequestKeyandShareKeybefore using this. Usehelp()on anothermake_*keyfunctions.ShareKeyis a combination of encrypted by Alice (File/Main)Key and her pubkey. As Bob can create againRequestKey, which is PubKey of ECDH fromsha256(key + salt)PrivKey, and already have PubKey of A, – B can create a shared secret, and decrypt AShareKeyto make anImportKey.- Arguments:
- key (
MainKey): MainKeyorBaseKeythat was used inRequestKeycreation.- sharekey (
ShareKey): Alice’s
ShareKey.- box_salt (
bytes, optional): BoxSalt that was used in
RequestKeycreation.- file_salt (
bytes, optional): FileSalt that was used in
RequestKeycreation.
- key (
Note
At least
box_saltorfile_saltmust be specified in function.
- tgbox.keys.make_mainkey(basekey: BaseKey, box_salt: bytes) MainKey
Function for retrieving mainkey.
- Arguments:
- basekey (
bytes): Key which you recieved with scrypt function or any other key you want.
- box_salt (
bytes): Salt generated on LocalBox creation.
- basekey (
- tgbox.keys.make_requestkey(key: MainKey | BaseKey, *, file_salt: bytes | None = None, box_salt: bytes | None = None) RequestKey
Function to retrieve requestkeys.
All files in RemoteBoxes is encrypted with filekeys, so if you want to share (or import) file, then you need to get filekey. For this purpose you can create
RequestKey.Alice has file in her Box which she wants to send to Bob. Then: A sends file to B. B forwards file to his Box, takes FileSalt from A File and
mainkeyof his Box and callsmake_requestkey(key=mainkey, file_salt=file_salt).RequestKeys is compressed pubkeys of ECDH on secp256k1, B makes privkey with
sha256(mainkey + salt)& exports pubkey to make a shared secret bytes (key, with which A will encrypt her filekey/mainkey. The encrypted (file/main)key is calledShareKey. Use help onmake_sharekey.).B sends received
RequestKeyto A. A makesShareKeyand sends it to B. B callsget_importkeyand recieves filekey.No one except Alice and Bob will have filekey. If Alice want to share entire Box (mainkey) with Bob, then Bob creates slightly different
RequestKeywith same function:make_requestkey(key=mainkey, box_salt=box_salt).To get BoxSalt Alice should only add Bob to her Box(
Channel).Note
Functions in this module is low-level, you can make
RequestKeyfor a forwarded from A file by callingget_requestkey(...)method onEncryptedRemoteBoxFile.- Arguments:
- key (
MainKey,BaseKey): Bob’s Key. If you want to import other’s file, then you need to specify here
MainKeyof your LocalBox, otherwise specifyBaseKey(for RemoteBox sharing)- file_salt (
bytes, optional): Alice’s FileSalt. Should be specified if
box_saltisNone.- box_salt (
bytes, optional): Alice’s BoxSalt. Should be specified if
file_saltisNone.
- key (
Function for making ShareKeys.
Note
You may want to know what is
RequestKeybefore reading this. Please, run help onmake_requestkeyto get info.Alice recieved
RequestKeyfrom Bob. But what she should do next? As reqkey is just EC-pubkey, she wants to make a shared secret key. A makes her own privkey as B, withsha256(mainkey + sha256(salt + requestkey))& initializes ECDH with B pubkey and her privkey. After this, A makes a hashed with SHA256 shared secret, which is 32-byte length AES-CBC key & encrypts her file/main key. IV here is first 16 bytes of thesha256(requestkey). Then she prepends her pubkey to the resulted encrypted file/main key and sends it to Bob.With A pubkey, B can easily get the same shared secret and decrypt
ShareKeyto make theImportKey.The things will be much less complicated if Alice don’t mind to share her File or Box with ALL peoples. Then she drops only her file or main key in raw. Simple is better than complex, after all.
- Arguments:
- mainkey (
MainKey, optional): Your Box key. Specify only this kwarg if you want to share your Box with ALL peoples. No decryption.
- filekey (
FileKey, optional): Your Filekey. Specify only this kwarg if you want to share your File with ALL peoples. No decryption.
- requestkey (
RequestKey, optional): RequestKeyof Bob. With this must be specifiedfile_saltorbox_salt.- file_salt (
bytes, optional): Salt (
FILE_SALT) of the file. Must be specified withrequestkeyifbox_saltisNone.- box_salt (
bytes, optional): Box salt. Must be specified with
requestkeyiffile_saltisNone.
- mainkey (
tgbox.tools module
This module stores utils required by API.
- class tgbox.tools.OpenPretender(flo: BinaryIO, aes_state: AESwState, file_size: int | None = None)
Bases:
objectClass to wrap Tgbox AES Generators and make it look like opened to “rb”-read file.
- close() None
- concat_metadata(metadata: bytes) None
Concates metadata to the file as (metadata + file).
- async read(size: int = -1) bytes
Returns
sizebytes from async Generator.This method is async only because we use
Fileuploading from the async library. You can usetgbox.syncin your sync code for reading.- Arguments:
- size (
int): Amount of bytes to return. By default is negative (return all).
- size (
- seekable(*args, **kwargs) bool
- tell() int
- class tgbox.tools.PackedAttributes
Bases:
objectThis class is used to pack items to bytestring. We use it to pack file metadata as well as pack a user’s custom attributes (cattrs), then encrypt it and attach to RBFile.
We store key/value length in 3 bytes, so the max key/value length is 256^3-1.
<key-length>key<value-length>value<…>
- static pack(**kwargs) bytes
Will make bytestring from your kwargs. Any kwarg always must be
bytes.make(x=5)will not work;make(x=b'')is correct.
- static unpack(pattr: bytes) Dict[str, bytes]
Will parse PackedAttributes.pack bytestring and convert it to the python dictionary.
Every PackedAttributes bytestring must contain
0xFFas first byte. If not, or if error, will return{}.
- class tgbox.tools.SearchFilter(**kwargs)
Bases:
objectContainer that filters search in
DecryptedRemoteBoxorDecryptedLocalBox.The
SearchFilterhas two filters: the Include and Exclude. On search, all matching to include files will be yielded, while all matching to exclude will be not yielded (ignored).The
tgbox.tools.search_generatorwill firstly check for include filters, so its priority higher.The
tgbox.tools.search_generatorwill yield files that match all of filters, not one of it.The
SearchFilteracceptslistas kwargs value. You canSearchFilter(id=[3,5,10]).The
SearchFilter(**kwargs)will add all filters to the include. Also useSearchFilter.include(...)&SearchFilter.exclude(...)methods after initialization.
- All filters:
- scope str: Define a path as search scope:
The scope is an absolute directory in which we will search your file by other filters. By default, the
tgbox.api.utils.search_generatorwill search over the entire LocalBox. This can be slow if you’re have too many files.Example: let’s imagine that You’re a Linux user which share it’s Box with the Windows user. In this case, Your LocalBox will contain a path parts on the
'/'(Linux) and'C:\'(Windows) roots. If You know that some file was uploaded by Your friend, then You can specify ascope='C:\'to ignore all files uploaded from the Linux machine. This will significantly fasten the search process, because almost all filters require to select row from the LocalBox DB, decrypt Metadata and compare its values with ones fromSearchFilter.!: Thescopewill be ignored on RemoteBox search.!: Themin_id&max_idwill be ignored ifscopeused.
id integer: File ID
- cattrs dict: File CustomAttributes:
To search for CATTRS you need to specify a dict.
E.g: If file
cattrs={b'comment': b'hi!'}, then filtercattrs={b'comment': b'h'}will match.By default,
tgbox.api.utils.search_generatorwill use anin, likeb'h' in b'hi!', but you can set areflag to use regular expressions, so filtercattrs={b'comment': b'hi(.)'}will match.
file_path pathlib.Path, str
file_name bytes: File name
file_salt bytes: File salt
verbyte bytes: File version byte
min_id integer: File ID should be > min_id
max_id integer: File ID should be < max_id
min_size integer: File Size should be > min_size
max_size integer: File Size should be < max_size
min_time integer/float: Upload Time should be > min_time
max_time integer/float: Upload Time should be < max_time
mime str: File mime type
imported bool: Yield only imported files
re bool: re_search for every
bytes
- exclude(**kwargs) SearchFilter
Will extend excluded filters
- include(**kwargs) SearchFilter
Will extend included filters
- async tgbox.tools.anext(aiterator, default=Ellipsis)
Analogue to Python 3.10+ anext()
- tgbox.tools.bytes_to_int(bytes_: bytes, signed: bool | None = False) int
Converts bytes to int with Big byteorder.
- async tgbox.tools.get_media_duration(file_path: str) int
Returns video/audio duration with ffmpeg in seconds.
- tgbox.tools.guess_path_type(path: str | Path) str
This function will try to guess file path type. It can be Windows-like or Unix-like
Returns ‘windows’ or ‘unix’
- tgbox.tools.int_to_bytes(int_: int, length: int | None = None, signed: bool | None = False) bytes
Converts int to bytes with Big byteorder.
- tgbox.tools.make_general_path(path: str | Path) Path
This function will make a valid UNIX-like Path from the Windows-like on the UNIX-like systems.
- async tgbox.tools.make_media_preview(file_path: PathLike, temp_path: PathLike | None = None, x: int = 128, y: int = -1) BinaryIO
Makes x:y sized thumbnail of the video/audio with ffmpeg. “-1” preserves one of side size.
- tgbox.tools.make_safe_file_path(path: str | Path) Path
This function will make a safe file path (a file path that can be easily inserted into another path). This is mostly for internal purposes, i.e
DecryptedRemoteBox.download()- This function will make a
@/home/non/test from /home/non/test CUsersnontest from C:Usersnontest
…so this path can be easily inserted into another, i.e DownloadsTGBOX/@/home/non/test
pathmust be absolute.
- tgbox.tools.ppart_id_generator(path: Path, mainkey: MainKey) Generator[tuple, None, None]
This generator will iterate over path parts and yield their unique IDs. We will use this to better navigate over abstract Folders in the LocalBox.
The path shouldn’t contain a file name, otherwise directory will contain it as folder.
/home/user/ is OK /home/user/file.txt is NOT
Will yield a tuple (PART, PARENT_PART_ID, PART_ID)
- tgbox.tools.prbg(size: int) bytes
Will generate
sizepseudo-random bytes.
tgbox.defaults module
This module stores API defaults.
- class tgbox.defaults.Limits(value)
Bases:
IntEnumDefault TGBOX API limits
- FILE_PATH_MAX: int = 4096
- METADATA_MAX: int = 1000000