From 627529f1263755d0f5accfbb1a6d0d62bf601d4b Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Mon, 19 Feb 2024 16:37:13 -0500 Subject: [PATCH 1/3] update func list in init --- earthaccess/__init__.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/earthaccess/__init__.py b/earthaccess/__init__.py index 4977bf38..0b2fe064 100644 --- a/earthaccess/__init__.py +++ b/earthaccess/__init__.py @@ -10,7 +10,6 @@ get_requests_https_session, get_s3_credentials, get_s3fs_session, - granule_query, login, open, search_data, @@ -24,6 +23,7 @@ logger = logging.getLogger(__name__) __all__ = [ + # api.py "login", "search_datasets", "search_data", @@ -31,15 +31,19 @@ "get_fsspec_https_session", "get_s3fs_session", "get_s3_credentials", - "granule_query", + "get_edl_token" "granule_query", "collection_query", "open", "download", + "auth_environ", + # search.py "DataGranules", "DataCollections", + # auth.py "Auth", + # store.py "Store", - "auth_environ", + # kerchunk "consolidate_metadata", ] From ce5fa8f46e3ade0061c6e0e05691a29e4072e301 Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Tue, 5 Mar 2024 15:19:26 -0500 Subject: [PATCH 2/3] fix missing comma in list typo --- earthaccess/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/earthaccess/__init__.py b/earthaccess/__init__.py index 0b2fe064..f0614481 100644 --- a/earthaccess/__init__.py +++ b/earthaccess/__init__.py @@ -31,7 +31,8 @@ "get_fsspec_https_session", "get_s3fs_session", "get_s3_credentials", - "get_edl_token" "granule_query", + "get_edl_token", + "granule_query", "collection_query", "open", "download", From cc4d1a7dd3a36fcb5b3832e4fb6bba3a646d684d Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Tue, 16 Apr 2024 13:36:58 -0400 Subject: [PATCH 3/3] add to import list --- earthaccess/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/earthaccess/__init__.py b/earthaccess/__init__.py index f0614481..c35fb59c 100644 --- a/earthaccess/__init__.py +++ b/earthaccess/__init__.py @@ -6,10 +6,12 @@ auth_environ, collection_query, download, + get_edl_token, get_fsspec_https_session, get_requests_https_session, get_s3_credentials, get_s3fs_session, + granule_query, login, open, search_data,