toxygen/src/util.py

30 lines
575 B
Python
Raw Normal View History

import os
2016-02-19 22:10:24 +01:00
program_version = '0.0.1 (alpha)'
2016-02-19 22:10:24 +01:00
def log(data):
with open('logs.log', 'a') as fl:
2016-02-19 22:10:24 +01:00
fl.write(str(data))
2016-02-20 09:06:24 +01:00
def string_to_bin(tox_id):
return tox_id.decode('hex')
2016-02-20 09:06:24 +01:00
def bin_to_string(raw_id):
res = ''.join('{:02x}'.format(ord(x)) for x in raw_id)
return res.upper()
def curr_directory():
return os.path.dirname(os.path.realpath(__file__))
class Singleton(object):
2016-02-25 21:40:00 +01:00
def __new__(cls, *args):
if not hasattr(cls, 'instance'):
2016-02-25 21:40:00 +01:00
cls.instance = super(Singleton, cls,).__new__(cls, *args)
return cls.instance