-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added in more opensoft data catalogues
- Loading branch information
1 parent
9bac8dc
commit 840dfb8
Showing
5 changed files
with
117 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
from .data_loader.data_loader import CkanCatResourceLoader | ||
from .explorer.cat_explore import CkanCatExplorer | ||
from .explorer.cat_explore import CkanCatExplorer, OpenDataSoftCatExplorer | ||
from .session.cat_session import CatSession | ||
from .errors.cats_errors import CatSessionError, CatExplorerError | ||
from .endpoints.api_endpoints import CkanApiPaths, OpenDataSoftDataCatalogues | ||
|
||
__all__ = [ | ||
"CkanCatResourceLoader", | ||
"CkanCatExplorer", | ||
"CatSession", | ||
"CatSessionError", | ||
"CatExplorerError", | ||
"CkanApiPaths", | ||
"OpenDataSoftDataCatalogues", | ||
"OpenDataSoftCatExplorer", | ||
] | ||
|
||
__version__ = "0.1.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import requests | ||
|
||
from typing import Union | ||
from loguru import logger | ||
from urllib.parse import urlparse | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters