Skip to content
Snippets Groups Projects
DataHandler.py 397 B
Newer Older
  • Learn to ignore specific revisions
  • Lennard Geese's avatar
    T
    Lennard Geese committed
    from abc import ABC, abstractmethod
    
    class DataHandler(ABC):
    
        def __init__(self):
            self.numberOfDrivers = 20
            self.invalidDriverId = "NO_DRIVER"
            self.enableTestingMode = False  # only partially import data to speed up testing, because HTTP 429 limits import speed
            self.activateDebugOvertakeAnalysis = False
            self.slickCompounds = ('SOFT', 'MEDIUM', 'HARD')