ewccli is the European Weather Cloud (EWC) Command Line Interface (CLI). This tool is developed to support EWC users on the use of the EWC services.
For more info about this SW, you may contact the European Weather Cloud <support@europeanweather.cloud>.
Copyright © EUMETSAT, ECMWF 2025.
The provided code and instructions are licensed under GPLv3+. They are intended to automate the setup of an environment that includes third-party software components. The usage and distribution terms of the resulting environment are subject to the individual licenses of those third-party libraries.
Users are responsible for reviewing and complying with the licenses of all third-party components included in the environment.
Contact EUMETSAT for details on the usage and distribution terms.
- Francesco Murdaca - Initial work - EUMETSAT
- You will need a python environment to run the library implementation of this code. Python version 3.11 or higher.
- git installed on your operating system. (usually is available to most OS nowadays)
You can use the following link to obtain:
- Applications Credentials (ID and secret)
We recommend installing ewccli inside a virtual environment to avoid dependency conflicts with system packages.
The EWC CLI Python package is available through PyPI:
pip install ewccli- Fork this repository and move into it
git clone THIS_REPO && cd ewccli- Create virtualenv with minimum python version > 3.10
python3 -m venv ewcclienv- Activate the virtual environment
source ./ewcclienv/bin/activate- Upgrade pip
pip install --upgrade pip- Install the package
pip install -e .Then run ewc to verify everything works:
If you get a WARNING like WARNING: The script ewc is installed in '~/.local/bin' which is not on PATH. Add the following to your profile configuration file:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.profileewc loginIMPORTANT:
- EWC CLI uses the following order of importance:
- env variables
- cli config
- any other config (e.g. Openstack cloud.yaml or Kubernetes
kubeconfigfile)
The following command shows the current available items. Official items are listed here.
ewc hub listewc hub deploy ITEMwhere ITEM is taken from ewc hub list command under Item column.
This section described the backends used and which commands are backed by those backends.
Used by infra and hub subcommands.
Used by hub subcommand.
Used by hub subcommand. (COMING SOON)
Used by dns, s3, k8s subcommmands. (COMING SOON)
The following dependencies are not included in the package but they are required and will be downloaded at build or compilation time:
| Dependency | Version | License | Home URL |
|---|---|---|---|
| requests | 2.32.5 | Apache Software License (Apache-2.0) | https://requests.readthedocs.io/en/latest |
| click | 8.1.8 | BSD-3-Clause | https://github.com/pallets/click |
| rich | 14.1.0 | MIT License | https://github.com/Textualize/rich |
| rich-click | 1.8.9 | MIT License | https://pypi.org/project/rich-click |
| prompt_toolkit | 3.0.51 | BSD-3-Clause License | https://python-prompt-toolkit.readthedocs.io/en/stable |
| pyyaml | 6.0.2 | MIT License | https://pyyaml.org |
| cryptography | 45.0.6 | Apache-2.0 OR BSD-3-Clause | https://github.com/pyca/cryptography |
| python-openstackclient | 8.2.0 | Apache Software License (Apache-2.0) | https://docs.openstack.org/python-openstackclient/latest |
| ansible | 11.10.0 | GNU General Public License v3 or later (GPLv3+) (GPL-3.0-or-later) | https://www.redhat.com/en/ansible-collaborative |
| ansible-runner | 2.4.1 | Apache Software License (Apache Software License, Version 2.0) | https://ansible.readthedocs.io/projects/runner/en/latest |
| kubernetes | 33.1.0 | Apache Software License (Apache License Version 2.0) | https://github.com/kubernetes-client/python |
The following dependencies are only required for building/editing/testing the software:
| Dependency | Version | License | Home URL |
|---|---|---|---|
| pytest | 8.4.1 | MIT License (MIT) | https://docs.pytest.org/en/latest |
| pytest-html | 4.1.1 | MIT License (MIT) | https://github.com/pytest-dev/pytest-html |
| pytest-mock | 3.14.1 | MIT License (MIT) | https://github.com/pytest-dev/pytest-mock |
| coverage | 7.10.5 | Apache Software License (Apache License Version 2.0) | https://github.com/nedbat/coveragepy |
| pre-commit | 4.3.0 | MIT License (MIT) | https://github.com/pre-commit/pre-commit |
| sphinx | 8.1.3 | BSD-2-Clause License | https://www.sphinx-doc.org/en/master |
| sphinx-click | 6.0.0 | MIT License (MIT) | https://github.com/click-contrib/sphinx-click |
| sphinx-rtd-theme | 3.0.2 | MIT License (MIT) | https://sphinx-rtd-theme.readthedocs.io/en/stable |
| pydeps | 3.0.1 | BSD-2-Clause License | https://github.com/thebjorn/pydeps |
| pydantic | 2.11.7 | MIT License (MIT) | https://github.com/pydantic/pydantic |
All notable changes (i.e. fixes, features and breaking changes) are documented in the CHANGELOG.md.
Thanks for taking the time to join our community and start contributing!
Please make sure to:
-
Familiarize yourself with our Code of Conduct before contributing.
-
See CONTRIBUTING.md for instructions on how to request or submit changes.
- Fork this repository and move into it
git clone https://github.com/ewcloud/ewccli.git && cd ewccli- Install the package for testing
pip install --user -e .[test]-
Modify the local code and test changes.
-
When you are happy, push code to your fork and open a MR (Gitlab) or PR (Github)
sphinx-build -b html docs/source/ Documentation/coverage run -m pytestpytestAfter cloning the repository and cd into it.
- Create the .dist/ repo
pip install -q buildpython3 -m build- Create a container if you need to test anything before.
podman build -t test-ewccli -f ./Containerfile .or same command with docker if you use it.


