Initial Submit

This commit is contained in:
retrozelda
2024-08-24 01:24:34 -04:00
commit 8616521124
13 changed files with 1040 additions and 0 deletions

17
beacon_snatch/__init__.py Normal file
View File

@@ -0,0 +1,17 @@
import logging
from . import helpers
from .series import BeaconSeries
from .content import BeaconContent
from .stream import BeaconStreamInfo
from .authentication import BeaconAuthentication
__all__ = ["BeaconSeries",
"BeaconContent",
"BeaconStreamInfo",
"BeaconAuthentication"]
logging.addLevelName(helpers.LOG_VERBOSE, helpers.LOG_VERBOSE_NAME)
logging.basicConfig(level=logging.INFO, format='%(levelname)s: %(message)s')