6.1.2.3. aequilibrae.project.Log¶
- class aequilibrae.project.Log(project_base_path: str)¶
Bases:
object
API 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)¶
Methods
__init__
(project_base_path)clear
()Clears the log file.
contents
()Returns contents of log file
- __init__(project_base_path: str)¶