changed
Browse files- akn/__main__.py +29 -22
akn/__main__.py
CHANGED
@@ -1,31 +1,38 @@
|
|
1 |
-
#!/usr/bin/env
|
2 |
# -*- coding: utf-8 -*-
|
3 |
-
# Copyright 2020-2023 (c) Randy W @xtdevs, @xtsea
|
4 |
-
#
|
5 |
-
# from : https://github.com/TeamKillerX
|
6 |
-
# Channel : @RendyProjects
|
7 |
-
# This program is free software: you can redistribute it and/or modify
|
8 |
-
# it under the terms of the GNU Affero General Public License as published by
|
9 |
-
# the Free Software Foundation, either version 3 of the License, or
|
10 |
-
# (at your option) any later version.
|
11 |
|
12 |
-
|
13 |
-
#
|
14 |
-
#
|
15 |
-
#
|
16 |
-
#
|
17 |
-
#
|
18 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
import logging
|
21 |
from akn.utils.license_checker import *
|
22 |
from config import *
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
logging.getLogger("pyrogram.client").setLevel(logging.WARNING)
|
27 |
-
loop = asyncio.get_event_loop()
|
28 |
|
29 |
if __name__ == "__main__":
|
30 |
uvloop_ultra_new()
|
31 |
-
faster_launcher_loaded(loop)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
+
#########################################################################
|
5 |
+
# PRIVATE LICENSE NOTICE #
|
6 |
+
# © 2020-2025 AKN-DEV. All Rights Reserved. #
|
7 |
+
# #
|
8 |
+
# This software is licensed under PRIVATE LICENSE. #
|
9 |
+
# Unauthorized use, modification, distribution, #
|
10 |
+
# or replication is strictly prohibited. #
|
11 |
+
# #
|
12 |
+
# LEGAL OWNER: AKN-DEV TEAM #
|
13 |
+
# CONTACT: @aknuserbot (Telegram) #
|
14 |
+
# DEVELOPER: @xpushz, @xtdevs, @xtsea #
|
15 |
+
# WEBSITE ORIGINAL: https://faster.maiysacollection.com/akn-dev/license #
|
16 |
+
# VIOLATIONS WILL RESULT IN: #
|
17 |
+
# - Automatic bot termination #
|
18 |
+
# - Legal action under DMCA/EU Copyright Law #
|
19 |
+
# - Permanent blacklist from all products #
|
20 |
+
#########################################################################
|
21 |
+
|
22 |
+
### -----2X SPEED BOOST LAUNCHER-----------###
|
23 |
|
|
|
24 |
from akn.utils.license_checker import *
|
25 |
from config import *
|
26 |
|
27 |
+
logging_info_warning()
|
28 |
+
loop = get_event_loop()
|
|
|
|
|
29 |
|
30 |
if __name__ == "__main__":
|
31 |
uvloop_ultra_new()
|
32 |
+
faster_launcher_loaded(loop)
|
33 |
+
|
34 |
+
#######################################################
|
35 |
+
# DO NOT REMOVE THIS LICENSE NOTICE! #
|
36 |
+
# This code contains proprietary trade secrets of #
|
37 |
+
# AKN-DEV. Any removal will result in legal action. #
|
38 |
+
#######################################################
|