klaasnicolaas/python-zurich

View on GitHub
src/zurich/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Asynchronous Python client providing Open Data information of Zurich."""

from .exceptions import ODPZurichConnectionError, ODPZurichError
from .models import DisabledParking
from .zurich import ODPZurich

__all__ = [
    "ODPZurich",
    "ODPZurichConnectionError",
    "ODPZurichError",
    "DisabledParking",
]