2016-02-24 09:33:49 +01:00
|
|
|
import os
|
2016-02-26 15:32:36 +01:00
|
|
|
import time
|
2016-03-03 17:44:01 +01:00
|
|
|
from platform import system
|
|
|
|
|
2016-02-19 22:10:24 +01:00
|
|
|
|
2016-02-21 21:25:37 +01:00
|
|
|
program_version = '0.0.1 (alpha)'
|
|
|
|
|
|
|
|
|
2016-02-19 22:10:24 +01:00
|
|
|
def log(data):
|
2016-02-21 21:25:37 +01:00
|
|
|
with open('logs.log', 'a') as fl:
|
2016-02-29 22:23:03 +01:00
|
|
|
fl.write(str(data) + '\n')
|
2016-02-19 22:10:24 +01:00
|
|
|
|
2016-02-20 09:06:24 +01:00
|
|
|
|
2016-02-24 09:33:49 +01:00
|
|
|
def curr_directory():
|
|
|
|
return os.path.dirname(os.path.realpath(__file__))
|
2016-02-24 16:32:35 +01:00
|
|
|
|
|
|
|
|
2016-02-26 15:32:36 +01:00
|
|
|
def curr_time():
|
2016-02-27 18:03:33 +01:00
|
|
|
return time.strftime("%H:%M")
|
2016-02-26 15:32:36 +01:00
|
|
|
|
|
|
|
|
2016-03-03 17:44:01 +01:00
|
|
|
def get_style(style):
|
|
|
|
if style != 'default':
|
|
|
|
return style
|
|
|
|
else:
|
|
|
|
if system() == 'Linux':
|
|
|
|
return 'gtk'
|
|
|
|
elif system() == 'Windows':
|
|
|
|
return 'windows'
|
|
|
|
|
|
|
|
|
2016-02-24 16:32:35 +01:00
|
|
|
class Singleton(object):
|
|
|
|
|
2016-03-03 20:19:09 +01:00
|
|
|
def __new__(cls, *args, **kwargs):
|
|
|
|
if not hasattr(cls, '_instance'):
|
|
|
|
cls._instance = super(Singleton, cls).__new__(cls, *args, **kwargs)
|
|
|
|
return cls._instance
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_instance(cls):
|
|
|
|
return cls._instance
|