BOSWatch 3
Python Script to receive and decode German BOS Information with rtl_fm and multimon-NG
 
Loading...
Searching...
No Matches
boswatch.utils.header Namespace Reference

Functions

def logoToLog ()
 Prints the BOSWatch logo to the log at debug level.
 
def infoToLog ()
 Prints the BOSWatch and OS information to log at debug level.
 

Detailed Description


/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ / / __ / / / /__ | | /| / / __ `/ __/ ___/ __ \ /_ < / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ / /_____/____//____/ |__/|__/__,_/__/___/_/ /_/ /____/ German BOS Information Script by Bastian Schroll

Function Documentation

◆ logoToLog()

def boswatch.utils.header.logoToLog ( )

Prints the BOSWatch logo to the log at debug level.

@return True or False on error
25def logoToLog():
26 r"""!Prints the BOSWatch logo to the log at debug level
27
28 @return True or False on error"""
29 logging.debug(r" ____ ____ ______ __ __ __ _____ ")
30 logging.debug(r" / __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ / ")
31 logging.debug(r" / __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ < ")
32 logging.debug(r" / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ / ")
33 logging.debug(r"/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/ ")
34 logging.debug(r" German BOS Information Script ")
35 logging.debug(r" by Bastian Schroll ")
36 logging.debug(r"")
37 return True
38
39

◆ infoToLog()

def boswatch.utils.header.infoToLog ( )

Prints the BOSWatch and OS information to log at debug level.

@return True or False on error
40def infoToLog():
41 r"""!Prints the BOSWatch and OS information to log at debug level
42
43 @return True or False on error"""
44 logging.debug("BOSWatch and environment information")
45 logging.debug("- Client version: %d.%d.%d",
46 version.client["major"],
47 version.client["minor"],
48 version.client["patch"])
49 logging.debug("- Server version: %d.%d.%d",
50 version.server["major"],
51 version.server["minor"],
52 version.server["patch"])
53 logging.debug("- Branch: %s",
54 version.branch)
55 logging.debug("- Release date: %02d.%02d.%4d",
56 version.date["day"],
57 version.date["month"],
58 version.date["year"])
59 logging.debug("- Python version: %s", platform.python_version())
60 logging.debug("- Python build: %s", platform.python_build())
61 logging.debug("- System: %s", platform.system())
62 logging.debug("- OS Version: %s", platform.platform())
63 logging.debug("")
64 return True