{"id":13680247,"url":"https://github.com/Open-EO/openeo-python-client","last_synced_at":"2025-04-29T23:30:48.332Z","repository":{"id":37733423,"uuid":"106008912","full_name":"Open-EO/openeo-python-client","owner":"Open-EO","description":"Python client API for OpenEO","archived":false,"fork":false,"pushed_at":"2025-04-24T16:10:26.000Z","size":24286,"stargazers_count":171,"open_issues_count":187,"forks_count":41,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-04-25T12:46:17.901Z","etag":null,"topics":["earth-observation","openeo","python","remote-sensing"],"latest_commit_sha":null,"homepage":"https://open-eo.github.io/openeo-python-client/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Open-EO.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-06T13:40:18.000Z","updated_at":"2025-04-24T16:09:45.000Z","dependencies_parsed_at":"2023-09-26T17:16:41.388Z","dependency_job_id":"c9d50cc1-dcc0-49be-9708-86f020e4561c","html_url":"https://github.com/Open-EO/openeo-python-client","commit_stats":{"total_commits":2227,"total_committers":38,"mean_commits":58.60526315789474,"dds":0.4072743601257297,"last_synced_commit":"7064cf360de039d188fe17d4b4c5f21da1993337"},"previous_names":[],"tags_count":64,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Open-EO%2Fopeneo-python-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Open-EO%2Fopeneo-python-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Open-EO%2Fopeneo-python-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Open-EO%2Fopeneo-python-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Open-EO","download_url":"https://codeload.github.com/Open-EO/openeo-python-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250990543,"owners_count":21519119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["earth-observation","openeo","python","remote-sensing"],"created_at":"2024-08-02T13:01:14.755Z","updated_at":"2025-04-29T23:30:48.306Z","avatar_url":"https://github.com/Open-EO.png","language":"Python","funding_links":[],"categories":["Python","Sustainable Development","Geospatial and Earth Observation"],"sub_categories":["Environmental Satellites"],"readme":"\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/openeo)\n![Status](https://img.shields.io/pypi/status/openeo)\n[![Lint](https://github.com/Open-EO/openeo-python-client/actions/workflows/lint.yml/badge.svg?branch=master)](https://github.com/Open-EO/openeo-python-client/actions/workflows/lint.yml)\n[![Tests](https://github.com/Open-EO/openeo-python-client/actions/workflows/unittests.yml/badge.svg?branch=master)](https://github.com/Open-EO/openeo-python-client/actions/workflows/unittests.yml)\n[![PyPI](https://img.shields.io/pypi/v/openeo)](https://pypi.org/project/openeo/)\n[![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/openeo)](https://anaconda.org/conda-forge/openeo)\n\n\n# openEO Python Client\n\nPython Client Library for the [openEO API](https://github.com/Open-EO/openeo-api).\nAllows you to interact with openEO backends from your own (local) Python environment.\n\n[openEO Python Client Library docs](https://open-eo.github.io/openeo-python-client/)\n\n\n## Usage example\n\nA simple example, to give a feel of using this library:\n\n```python\nimport openeo\n\n# Connect to openEO back-end.\nconnection = openeo.connect(\"openeo.vito.be\").authenticate_oidc()\n\n# Load data cube from TERRASCOPE_S2_NDVI_V2 collection.\ncube = connection.load_collection(\n    \"TERRASCOPE_S2_NDVI_V2\",\n    spatial_extent={\"west\": 5.05, \"south\": 51.21, \"east\": 5.1, \"north\": 51.23},\n    temporal_extent=[\"2022-05-01\", \"2022-05-30\"],\n    bands=[\"NDVI_10M\"],\n)\n# Rescale digital number to physical values and take temporal maximum.\ncube = cube.apply(lambda x: 0.004 * x - 0.08).max_time()\n\ncube.download(\"ndvi-max.tiff\")\n```\n\n![Example result](https://raw.githubusercontent.com/Open-EO/openeo-python-client/master/docs/_static/images/welcome.png)\n\n\nSee the [openEO Python Client Library documentation](https://open-eo.github.io/openeo-python-client/) for more details,\nexamples and in-depth discussion.\n\n\n## Installation\n\nAs always, it is recommended to work in some kind of virtual environment\n(using `venv`, `virtualenv`, conda, docker, ...)\nto install the `openeo` package and its dependencies:\n\n    pip install openeo\n\nSee the [installation docs](https://open-eo.github.io/openeo-python-client/installation.html)\nfor more information, extras and alternatives.\n\n\n\n## General openEO background and links\n\n- [openEO.org](https://openeo.org/)\n- [api.openEO.org](https://api.openeo.org/)\n- [processes.openEO.org](https://processes.openeo.org/)\n\n\n## Contributions and funding\n\nThe authors acknowledge the financial support for the development of this package\nduring the H2020 project \"openEO\" (Oct 2017 to Sept 2020) by the European Union, funded by call EO-2-2017: EO Big Data Shift, under grant number 776242.\nWe also acknowledge the financial support received from ESA for the project \"openEO Platform\" (Sept 2020 to Sept 2023).\n\nThis package received major contributions from the following organizations:\n\n[\u003cimg src=\"https://raw.githubusercontent.com/Open-EO/openeo-python-client/master/docs/_static/images/vito-logo.png\" alt=\"VITO Remote Sensing logo\" title=\"VITO Remote Sensing\" height=\"50\"\u003e](https://remotesensing.vito.be/) \u0026emsp;\n[\u003cimg src=\"https://www.uni-muenster.de/imperia/md/images/allgemein/farbunabhaengig/wwu.svg\" alt=\"WWU Münster logo\" title=\"University of Münster\" height=\"50\"\u003e](https://www.uni-muenster.de/) \u0026emsp;\n[\u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/9/9b/Eurac_Research_-_logo.png\" alt=\"Eurac Research logo\" title=\"Eurac Research\" height=\"50\"\u003e](https://www.eurac.edu/) \u0026emsp;\n[\u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/TU_Signet_CMYK.svg\" alt=\"TU Wien Logo\" title=\"Technische Universität Wien\" height=\"50\"\u003e](https://www.tuwien.at/) \u0026emsp;\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpen-EO%2Fopeneo-python-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOpen-EO%2Fopeneo-python-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpen-EO%2Fopeneo-python-client/lists"}