diff --git a/earthaccess/__init__.py b/earthaccess/__init__.py index 4977bf38..c35fb59c 100644 --- a/earthaccess/__init__.py +++ b/earthaccess/__init__.py @@ -6,6 +6,7 @@ auth_environ, collection_query, download, + get_edl_token, get_fsspec_https_session, get_requests_https_session, get_s3_credentials, @@ -24,6 +25,7 @@ logger = logging.getLogger(__name__) __all__ = [ + # api.py "login", "search_datasets", "search_data", @@ -31,15 +33,20 @@ "get_fsspec_https_session", "get_s3fs_session", "get_s3_credentials", + "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", ]