2016-02-24 11:33:49 +03:00
|
|
|
import os
|
2016-02-26 17:32:36 +03:00
|
|
|
import time
|
2016-02-20 00:10:24 +03:00
|
|
|
|
2016-02-21 23:25:37 +03:00
|
|
|
program_version = '0.0.1 (alpha)'
|
|
|
|
|
|
|
|
|
|
|
2016-02-20 00:10:24 +03:00
|
|
|
def log(data):
|
2016-02-21 23:25:37 +03:00
|
|
|
with open('logs.log', 'a') as fl:
|
2016-03-01 00:23:03 +03:00
|
|
|
fl.write(str(data) + '\n')
|
2016-02-20 00:10:24 +03:00
|
|
|
|
2016-02-20 11:06:24 +03:00
|
|
|
|
2016-02-24 11:33:49 +03:00
|
|
|
def curr_directory():
|
|
|
|
|
return os.path.dirname(os.path.realpath(__file__))
|
2016-02-24 18:32:35 +03:00
|
|
|
|
|
|
|
|
|
2016-02-26 17:32:36 +03:00
|
|
|
def curr_time():
|
2016-02-27 20:03:33 +03:00
|
|
|
return time.strftime("%H:%M")
|
2016-02-26 17:32:36 +03:00
|
|
|
|
|
|
|
|
|
2016-02-24 18:32:35 +03:00
|
|
|
class Singleton(object):
|
|
|
|
|
|
2016-02-25 23:40:00 +03:00
|
|
|
def __new__(cls, *args):
|
2016-02-24 18:32:35 +03:00
|
|
|
if not hasattr(cls, 'instance'):
|
2016-02-25 23:40:00 +03:00
|
|
|
cls.instance = super(Singleton, cls,).__new__(cls, *args)
|
2016-02-24 18:32:35 +03:00
|
|
|
return cls.instance
|