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

Functions

def fileExist (filePath)
 
def makeDirIfNotExist (dirPath)
 Checks if an directory is existing and create it if not.
 

Variables

os ROOT_PATH = os.path.dirname(sys.modules['boswatch'].__file__).replace("\\", "/") + "/../"
 
os LOG_PATH = ROOT_PATH + "log/"
 
os CONFIG_PATH = ROOT_PATH + "config/"
 
os BIN_PATH = ROOT_PATH + "_bin/"
 
os TEST_PATH = ROOT_PATH + "test/"
 

Detailed Description


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

Function Documentation

◆ fileExist()

def boswatch.utils.paths.fileExist (   filePath)
32def fileExist(filePath):
33 return os.path.exists(filePath)
34
35

◆ makeDirIfNotExist()

def boswatch.utils.paths.makeDirIfNotExist (   dirPath)

Checks if an directory is existing and create it if not.

@param dirPath: Path of the directory
@return Path of the directory or False
36def makeDirIfNotExist(dirPath):
37 r"""!Checks if an directory is existing and create it if not
38
39 @param dirPath: Path of the directory
40 @return Path of the directory or False"""
41 if not os.path.exists(dirPath):
42 os.mkdir(dirPath)
43 logging.debug("directory created: %s", dirPath)
44 return dirPath

Variable Documentation

◆ ROOT_PATH

os boswatch.utils.paths.ROOT_PATH = os.path.dirname(sys.modules['boswatch'].__file__).replace("\\", "/") + "/../"

◆ LOG_PATH

os boswatch.utils.paths.LOG_PATH = ROOT_PATH + "log/"

◆ CONFIG_PATH

os boswatch.utils.paths.CONFIG_PATH = ROOT_PATH + "config/"

◆ BIN_PATH

os boswatch.utils.paths.BIN_PATH = ROOT_PATH + "_bin/"

◆ TEST_PATH

os boswatch.utils.paths.TEST_PATH = ROOT_PATH + "test/"