aequilibrae.log package¶
Submodules¶
aequilibrae.log.log module¶
-
class
aequilibrae.log.log.Log(project_base_path: str)¶ Bases:
objectAPI entry point to the log file contents
from aequilibrae import Project p = Project() p.open('path/to/project/folder') log = p.log() # We get all entries for the log file entries = log.contents() # Or clear everything (NO UN-DOs) log.clear()-
__init__(project_base_path: str)¶ Initialize self. See help(type(self)) for accurate signature.
-
contents() → list¶ Returns contents of log file
- Return:
log_contents (
list): List with all entries in the log file
-
clear()¶ Clears the log file. Use it wisely
-