42 lines
804 B
Python
42 lines
804 B
Python
import os
|
|
import time
|
|
from platform import system
|
|
|
|
|
|
program_version = '0.0.1 (alpha)'
|
|
|
|
|
|
def log(data):
|
|
with open('logs.log', 'a') as fl:
|
|
fl.write(str(data) + '\n')
|
|
|
|
|
|
def curr_directory():
|
|
return os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
|
def curr_time():
|
|
return time.strftime("%H:%M")
|
|
|
|
|
|
def get_style(style):
|
|
if style != 'default':
|
|
return style
|
|
else:
|
|
if system() == 'Linux':
|
|
return 'gtk'
|
|
elif system() == 'Windows':
|
|
return 'windows'
|
|
|
|
|
|
class Singleton(object):
|
|
|
|
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
|