Package containing basic functions to build telegram bots.
Project description
tgthon
• Telegram_ • Github_
install
.. code:: python
pip install tgthon
Usage
tgthon.pyutils
.. code:: python
from tgthon.pyutils import rename, file_extension
#rename files
rename(file, new_path)
#get file extension using path of file
extension = file_extension(file)
tgthon.pyfunc
.. code:: python
from tgthon.pyfunc import bash, total_frames, video_metadata
#handy subprocess
o, e = bash(cmd)
#get total number of frames in a video
tf = total_frames(file)
#get basic metadata of video
data = video_metadata(file)
height = data["height"]
width = data["width"]
duration = data["duration"]
tgthon.uploader
.. code:: python
from tgthon.uploader import download_from_youtube, ytdl, weburl
#Download videos from youtube
filename = await download_from_youtube(url)
#Download videos from YtDlp supported sites
filename = await ytdl(url)
#Download files from the web
filename = weburl(url)
.. _Telegram: https://t.me/AnnayanX .. _Github : https://Github.com/pragy-dl
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tgthon-0.1.5.tar.gz
(21.8 kB
view details)
File details
Details for the file tgthon-0.1.5.tar.gz
.
File metadata
- Download URL: tgthon-0.1.5.tar.gz
- Upload date:
- Size: 21.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66c2b453be6e593c02a572bacf1933d12ede8ffcf7a214d08b0b681f1a015fe3 |
|
MD5 | d975cdffe532d1552c533ba23193173b |
|
BLAKE2b-256 | 7de836410e56686b462c4d3ab6d0a3dcd596534b380bdfd0d3fd719a590ca02e |