-
Notifications
You must be signed in to change notification settings - Fork 2
/
UAA.py
38 lines (33 loc) · 1.4 KB
/
UAA.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
(C) 2016 DeltaQuad (enwp.org/User:DeltaQuad)
This file is part of DeltaQuadBot.
DeltaQuadBot is free software: you can redistribute it and/or modify
it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DeltaQuadBot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU AFFERO GENERAL PUBLIC LICENSE for more details.
You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
along with DeltaQuadBot. If not, see <https://www.gnu.org/licenses/agpl.txt>.
"""
from __future__ import print_function
import globalfunc as globe
#! /usr/bin/python
import sys, localconfig, platform, time
start_time = time.time()
#OS Runtime comments
if platform.system() == "Windows":
sys.path.append(localconfig.winpath)
print("You are running DeltaQuadBot UAA Module for Windows.")
else:
sys.path.append(localconfig.linuxpath)
print("You are running DeltaQuadBot UAA Module for Linux.")
override = True
if not globe.startAllowed(override):
print("Fatal - System Access Denied.")
sys.exit(1)
print("System Alert - Program Still running.")
globe.main()
print("--- Time elapsed: %s seconds ---" % (time.time() - start_time))