Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
anasty17
GitHub Repository: anasty17/mirror-leech-telegram-bot
Path: blob/master/bot/modules/__init__.py
1620 views
1
from .bot_settings import send_bot_settings, edit_bot_settings
2
from .cancel_task import cancel, cancel_multi, cancel_all_buttons, cancel_all_update
3
from .chat_permission import authorize, unauthorize, add_sudo, remove_sudo
4
from .clone import clone_node
5
from .exec import aioexecute, execute, clear
6
from .file_selector import select, confirm_selection
7
from .force_start import remove_from_queue
8
from .gd_count import count_node
9
from .gd_delete import delete_file
10
from .gd_search import gdrive_search, select_type
11
from .help import arg_usage, bot_help
12
from .mirror_leech import (
13
mirror,
14
leech,
15
qb_leech,
16
qb_mirror,
17
jd_leech,
18
jd_mirror,
19
nzb_leech,
20
nzb_mirror,
21
)
22
from .restart import (
23
restart_bot,
24
restart_notification,
25
confirm_restart,
26
)
27
from .rss import get_rss_menu, rss_listener
28
from .search import torrent_search, torrent_search_update, initiate_search_tools
29
from .nzb_search import hydra_search
30
from .services import start, ping, log
31
from .shell import run_shell
32
from .stats import bot_stats, get_packages_version
33
from .status import task_status, status_pages
34
from .users_settings import get_users_settings, edit_user_settings, send_user_settings
35
from .ytdlp import ytdl, ytdl_leech
36
37
__all__ = [
38
"send_bot_settings",
39
"edit_bot_settings",
40
"cancel",
41
"cancel_multi",
42
"cancel_all_buttons",
43
"cancel_all_update",
44
"authorize",
45
"unauthorize",
46
"add_sudo",
47
"remove_sudo",
48
"clone_node",
49
"aioexecute",
50
"execute",
51
"hydra_search",
52
"clear",
53
"select",
54
"confirm_selection",
55
"remove_from_queue",
56
"count_node",
57
"delete_file",
58
"gdrive_search",
59
"select_type",
60
"arg_usage",
61
"mirror",
62
"leech",
63
"qb_leech",
64
"qb_mirror",
65
"jd_leech",
66
"jd_mirror",
67
"nzb_leech",
68
"nzb_mirror",
69
"restart_bot",
70
"restart_notification",
71
"confirm_restart",
72
"get_rss_menu",
73
"rss_listener",
74
"torrent_search",
75
"torrent_search_update",
76
"initiate_search_tools",
77
"start",
78
"bot_help",
79
"ping",
80
"log",
81
"run_shell",
82
"bot_stats",
83
"get_packages_version",
84
"task_status",
85
"status_pages",
86
"get_users_settings",
87
"edit_user_settings",
88
"send_user_settings",
89
"ytdl",
90
"ytdl_leech",
91
]
92
93