├── .gitignore ├── Dockerfile ├── LICENSE ├── alive.sh ├── change ├── docker-compose.yml ├── readme.md ├── requirements.txt ├── start.sh ├── toolkit.jpg └── tortoolkit ├── __init__.py ├── __main__.py ├── consts ├── DefaultCommands.py ├── ExecVarsSample.py └── __init__.py ├── core ├── HandleManager.py ├── __init__.py ├── database_handle.py ├── getCommand.py ├── getVars.py ├── nodes.py ├── settings.py ├── speedtest.py ├── status │ ├── __init__.py │ ├── auto_delete.py │ ├── menu.py │ ├── status.py │ └── upload.py ├── thumb_manage.py ├── ttk_ytdl.py ├── user_settings.py ├── varholdern.py └── wserver.py ├── functions ├── Ftele.py ├── Hash_Fetch.py ├── Human_Format.py ├── Leech_Module.py ├── QBittorrentWrap.py ├── __init__.py ├── admin_check.py ├── ariatools.py ├── dl_generator.py ├── instadl.py ├── megatools.py ├── pg_plugin.py ├── progress_for_pyrogram.py ├── progress_for_telethon.py ├── rclone_upload.py ├── tele_upload.py ├── vids_helpers.py └── zip7_utils.py └── ttk_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/LICENSE -------------------------------------------------------------------------------- /alive.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /change: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | Recreate Github Repo resetting 6 month life. -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/start.sh -------------------------------------------------------------------------------- /toolkit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/toolkit.jpg -------------------------------------------------------------------------------- /tortoolkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/__init__.py -------------------------------------------------------------------------------- /tortoolkit/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/__main__.py -------------------------------------------------------------------------------- /tortoolkit/consts/DefaultCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/consts/DefaultCommands.py -------------------------------------------------------------------------------- /tortoolkit/consts/ExecVarsSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/consts/ExecVarsSample.py -------------------------------------------------------------------------------- /tortoolkit/consts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tortoolkit/core/HandleManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/HandleManager.py -------------------------------------------------------------------------------- /tortoolkit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tortoolkit/core/database_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/database_handle.py -------------------------------------------------------------------------------- /tortoolkit/core/getCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/getCommand.py -------------------------------------------------------------------------------- /tortoolkit/core/getVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/getVars.py -------------------------------------------------------------------------------- /tortoolkit/core/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/nodes.py -------------------------------------------------------------------------------- /tortoolkit/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/settings.py -------------------------------------------------------------------------------- /tortoolkit/core/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/speedtest.py -------------------------------------------------------------------------------- /tortoolkit/core/status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tortoolkit/core/status/auto_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/status/auto_delete.py -------------------------------------------------------------------------------- /tortoolkit/core/status/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/status/menu.py -------------------------------------------------------------------------------- /tortoolkit/core/status/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/status/status.py -------------------------------------------------------------------------------- /tortoolkit/core/status/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/status/upload.py -------------------------------------------------------------------------------- /tortoolkit/core/thumb_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/thumb_manage.py -------------------------------------------------------------------------------- /tortoolkit/core/ttk_ytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/ttk_ytdl.py -------------------------------------------------------------------------------- /tortoolkit/core/user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/user_settings.py -------------------------------------------------------------------------------- /tortoolkit/core/varholdern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/varholdern.py -------------------------------------------------------------------------------- /tortoolkit/core/wserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/core/wserver.py -------------------------------------------------------------------------------- /tortoolkit/functions/Ftele.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/Ftele.py -------------------------------------------------------------------------------- /tortoolkit/functions/Hash_Fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/Hash_Fetch.py -------------------------------------------------------------------------------- /tortoolkit/functions/Human_Format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/Human_Format.py -------------------------------------------------------------------------------- /tortoolkit/functions/Leech_Module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/Leech_Module.py -------------------------------------------------------------------------------- /tortoolkit/functions/QBittorrentWrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/QBittorrentWrap.py -------------------------------------------------------------------------------- /tortoolkit/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tortoolkit/functions/admin_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/admin_check.py -------------------------------------------------------------------------------- /tortoolkit/functions/ariatools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/ariatools.py -------------------------------------------------------------------------------- /tortoolkit/functions/dl_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/dl_generator.py -------------------------------------------------------------------------------- /tortoolkit/functions/instadl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/instadl.py -------------------------------------------------------------------------------- /tortoolkit/functions/megatools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/megatools.py -------------------------------------------------------------------------------- /tortoolkit/functions/pg_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/pg_plugin.py -------------------------------------------------------------------------------- /tortoolkit/functions/progress_for_pyrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/progress_for_pyrogram.py -------------------------------------------------------------------------------- /tortoolkit/functions/progress_for_telethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/progress_for_telethon.py -------------------------------------------------------------------------------- /tortoolkit/functions/rclone_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/rclone_upload.py -------------------------------------------------------------------------------- /tortoolkit/functions/tele_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/tele_upload.py -------------------------------------------------------------------------------- /tortoolkit/functions/vids_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/vids_helpers.py -------------------------------------------------------------------------------- /tortoolkit/functions/zip7_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/functions/zip7_utils.py -------------------------------------------------------------------------------- /tortoolkit/ttk_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anasty17/TorToolkit-Telegram/HEAD/tortoolkit/ttk_client.py --------------------------------------------------------------------------------