├── .github └── workflows │ ├── python-publish.yml │ └── run-tests.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── demo.gif ├── integration_tests ├── test_cli.py └── test_download.py ├── landsatxplore ├── __init__.py ├── api.py ├── cli.py ├── earthexplorer.py ├── errors.py └── util.py ├── pyproject.toml └── tests ├── test_api.py └── test_earthexplorer.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/demo.gif -------------------------------------------------------------------------------- /integration_tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/integration_tests/test_cli.py -------------------------------------------------------------------------------- /integration_tests/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/integration_tests/test_download.py -------------------------------------------------------------------------------- /landsatxplore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landsatxplore/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/landsatxplore/api.py -------------------------------------------------------------------------------- /landsatxplore/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/landsatxplore/cli.py -------------------------------------------------------------------------------- /landsatxplore/earthexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/landsatxplore/earthexplorer.py -------------------------------------------------------------------------------- /landsatxplore/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/landsatxplore/errors.py -------------------------------------------------------------------------------- /landsatxplore/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/landsatxplore/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_earthexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/landsatxplore/HEAD/tests/test_earthexplorer.py --------------------------------------------------------------------------------