forked from negolith/adba
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_lib.py
53 lines (42 loc) · 1.3 KB
/
test_lib.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# coding=utf-8
#
# This file is part of aDBa.
#
# aDBa is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# aDBa 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with aDBa. If not, see <http://www.gnu.org/licenses/>.
import sys
import os
import getopt
from time import time, strftime, localtime
opts, extraparams = getopt.getopt(sys.argv[1:], 'u:p:f:')
user = ""
pw = ""
filePath = ""
for o, p in opts:
if o == '-u':
user = p
elif o == '-p':
pw = p
elif o == '-f':
filePath = os.path.abspath(p)
def beep():
f = open('/dev/tty', 'w')
f.write(chr(7))
f.close()
def getNowString():
return strftime("%Y-%m-%d %H:%M:%S", localtime(time()))
def log_function(data, logLvl="INFO"):
print((getNowString() + "-" + str(logLvl) + ": " + str(data)))
def logwrapper(x):
log_function("anidb: " + str(x), "DEBUG")