Metadata-Version: 2.3
Name: pygeodes
Version: 0.1.1
Summary: A Python client for Geodes APIs
License: MIT
Author: CNES
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: aiofiles (>=24.1.0,<25.0.0)
Requires-Dist: aiohttp (>=3.9.5,<4.0.0)
Requires-Dist: boto3 (>=1.34.142,<2.0.0)
Requires-Dist: folium (>=0.17.0,<0.18.0)
Requires-Dist: geopandas (>=1.0,<2.0)
Requires-Dist: ipython (==8.12.3)
Requires-Dist: pandas (>=2.2,<3.0)
Requires-Dist: pystac (==1.8.0)
Requires-Dist: remotezip (>=0.12.3,<0.13.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: rich (>=13.7.1,<14.0.0)
Requires-Dist: tqdm (>=4.66.4,<5.0.0)
Requires-Dist: validators (>=0.28.3,<0.29.0)
Requires-Dist: whoosh (>=2.7.4,<3.0.0)
Project-URL: Homepage, https://geodes.cnes.fr
Project-URL: Repository, https://github.com/CNES/pyGeodes
Description-Content-Type: text/markdown

<div align="center">
<a target="_blank" href="https://github.com/CNES/pyGeodes">
<picture>
  <source
    srcset="https://raw.githubusercontent.com/CNES/pyGeodes/main/docs/source/_static/logo-geodes-light.png"
    media="(prefers-color-scheme: light)"
  />
  <img
    src="https://raw.githubusercontent.com/CNES/pyGeodes/main/docs/source/_static/logo-geodes-light.png"
    alt="GEODES"
    width="60%"
  />
</picture>
</a>

<h1>pyGeodes, A wrapper for Geodes APIs</h1>

[![Python](https://img.shields.io/badge/python-v3.10+-blue.svg)](https://www.python.org/downloads/release/python-380/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Documentation](https://github.com/CNES/pyGeodes/actions/workflows/pages.yml/badge.svg?branch=main)](https://cnes.github.io/pyGeodes/)
</div>

This project aims to provide a toolbox to access to some endpoints of [Geodes](https://geodes.cnes.fr/api) APIs in Python.

To see the docs, please go to [https://CNES.github.io/pyGeodes/](https://cnes.github.io/pyGeodes/).

## Installation

### From PyPi

You can install from PyPi by following those steps :

1. Install pygeodes

```bash
pip install pygeodes
```

### Build from source

To build from source, follow those steps : 

1. Clone the repository

```bash
git clone https://github.com/CNES/pyGeodes
```

2. Install from source

```bash
pip install ./pygeodes/
```

