onboardapis.bus
Package for buses
Operator ID
The operator ID for buses is highly dependent on the region and will be described further in the according country package.
1""" 2Package for buses 3 4## Operator ID 5 6The operator ID for buses is highly dependent on the region 7and will be described further in the according country package. 8""" 9from __future__ import annotations 10 11from abc import ABCMeta 12 13from .. import Vehicle 14 15__all__ = [ 16 "Bus", 17] 18 19 20class Bus(Vehicle, metaclass=ABCMeta): 21 """ 22 Base class for buses 23 """
Base class for buses