We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b94897e commit 11686ddCopy full SHA for 11686dd
earthaccess/auth.py
@@ -1,19 +1,17 @@
1
import getpass
2
+import importlib.metadata
3
import logging
4
import os
5
from netrc import NetrcParseError
6
from pathlib import Path
7
from typing import Any, Dict, List, Optional
8
from urllib.parse import urlparse
9
-
10
import requests # type: ignore
11
from tinynetrc import Netrc
12
13
from .daac import DAACS
14
15
-import importlib.metadata
16
17
try:
18
user_agent = f"earthaccess v{importlib.metadata.version('earthacess')}"
19
except importlib.metadata.PackageNotFoundError:
0 commit comments