forked from DOI-USGS/dataretrieval-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
49 lines (44 loc) · 1.01 KB
/
__init__.py
File metadata and controls
49 lines (44 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
Water Data API module for accessing USGS water data services.
This module provides functions for downloading data from the Water Data APIs,
including the USGS Aquarius Samples database.
See https://api.waterdata.usgs.gov/ for API reference.
"""
from __future__ import annotations
# Public API exports
from .api import (
_check_profiles,
get_codes,
get_continuous,
get_daily,
get_field_measurements,
get_latest_continuous,
get_latest_daily,
get_monitoring_locations,
get_reference_table,
get_samples,
get_time_series_metadata,
)
from .types import (
CODE_SERVICES,
PROFILE_LOOKUP,
PROFILES,
SERVICES,
)
__all__ = [
"get_codes",
"get_continuous",
"get_daily",
"get_field_measurements",
"get_latest_continuous",
"get_latest_daily",
"get_monitoring_locations",
"get_reference_table",
"get_samples",
"get_time_series_metadata",
"_check_profiles",
"CODE_SERVICES",
"SERVICES",
"PROFILES",
"PROFILE_LOOKUP",
]