librefi/librefi/__main__.py

19 lines
494 B
Python
Raw Normal View History

2020-11-29 05:05:37 +01:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
2020-08-30 16:26:29 +02:00
2020-11-29 05:05:37 +01:00
import sys
if __package__ is None and not hasattr(sys, 'frozen'):
# direct call of __main__.py
import os.path
path = os.path.realpath(os.path.abspath(__file__))
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
from librefi import LibreFi
from .logger import _Logger, LOG_LEVELS
librefi = LibreFi(logger=_Logger, log_level=LOG_LEVELS.DEBUG)
if __name__ == '__main__':
librefi._periodical_check()