├── .github └── workflows │ └── check-and-publish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── ecmwfapi ├── __init__.py └── api.py ├── example.py ├── setup.py └── tests ├── test_dataset.py └── test_mars.py /.github/workflows/check-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/.github/workflows/check-and-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/README.md -------------------------------------------------------------------------------- /ecmwfapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/ecmwfapi/__init__.py -------------------------------------------------------------------------------- /ecmwfapi/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/ecmwfapi/api.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/example.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/tests/test_dataset.py -------------------------------------------------------------------------------- /tests/test_mars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf/ecmwf-api-client/HEAD/tests/test_mars.py --------------------------------------------------------------------------------