klaasnicolaas/python-odp-amsterdam

View on GitHub
src/odp_amsterdam/__init__.py

Summary

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

from .exceptions import (
    ODPAmsterdamConnectionError,
    ODPAmsterdamError,
    ODPAmsterdamResultsError,
)
from .models import Garage, GarageCategory, ParkingSpot, VehicleType
from .odp_amsterdam import ODPAmsterdam

__all__ = [
    "Garage",
    "GarageCategory",
    "ODPAmsterdam",
    "ODPAmsterdamConnectionError",
    "ODPAmsterdamError",
    "ODPAmsterdamResultsError",
    "ParkingSpot",
    "VehicleType",
]