randydev commited on
Commit
0b7b6f2
·
verified ·
1 Parent(s): d731704
Files changed (1) hide show
  1. akn/__main__.py +29 -22
akn/__main__.py CHANGED
@@ -1,31 +1,38 @@
1
- #!/usr/bin/env python
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
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Affero General Public License for more details.
16
- #
17
- # You should have received a copy of the GNU Affero General Public License
18
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- import logging
21
  from akn.utils.license_checker import *
22
  from config import *
23
 
24
- logging.basicConfig(level=logging.INFO)
25
- logging.getLogger("pyrogram.syncer").setLevel(logging.WARNING)
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
+ #######################################################