Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions transport_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@
"oica",
"org",
"other",
"sum4all",
)
16 changes: 16 additions & 0 deletions transport_data/sum4all/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""Sustainable Urban Mobility for All (SUM4All) data provider."""

from transport_data.util.pluggy import hookimpl


@hookimpl
def get_agencies():
"""Return the ``ISO`` :class:`~.sdmx.model.common.Agency`."""
from sdmx.model import common

a = common.Agency(
id="SUM4ALL",
name="Sustainable Urban Mobility for All",
contact=[common.Contact(uri=["https://sum4all.org"])],
)
return (a,)
Loading