Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Authenticated access to the Argo reference database on password protected erddap #256

Merged
merged 7 commits into from
Apr 26, 2023
Merged
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
2 changes: 2 additions & 0 deletions argopy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
from .utilities import TopoFetcher, ArgoNVSReferenceTables, OceanOPSDeployments # noqa: E402
from .utilities import monitor_status as status # noqa: E402
from .options import set_options # noqa: E402
from .data_fetchers import CTDRefDataFetcher


#
Expand All @@ -53,6 +54,7 @@
"TopoFetcher", # Class
"ArgoNVSReferenceTables", # Class
"OceanOPSDeployments", # Class
"CTDRefDataFetcher",

# Submodules:
"utilities",
Expand Down
18 changes: 17 additions & 1 deletion argopy/data_fetchers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
"""
This package contains implementations for data and index fetchers for specific data sources.
These fetchers are meant to be used and discovered automatically by the facades (in fetchers.py)
Most of these fetchers are meant to be used and discovered automatically by the facades (in fetchers.py)
and by utilities functions list_available_data_src() and list_available_index_src()
"""

from .erddap_refdata import Fetch_box as CTDRefDataFetcher
from . import erddap_data
from . import erddap_index
from . import argovis_data
from . import gdacftp_data
from . import gdacftp_index

__all__ = (
"erddap_data",
"erddap_index",
"argovis_data",
"gdacftp_data",
"gdacftp_index",
"CTDRefDataFetcher",
)
Loading