Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/C4IROcean/odp-sdk-python
Python SDK for Ocean Data Platform
https://github.com/C4IROcean/odp-sdk-python
Last synced: about 1 month ago
JSON representation
Python SDK for Ocean Data Platform
- Host: GitHub
- URL: https://github.com/C4IROcean/odp-sdk-python
- Owner: C4IROcean
- License: mit
- Created: 2020-06-18T07:23:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-15T14:17:20.000Z (3 months ago)
- Last Synced: 2024-10-29T20:37:17.756Z (2 months ago)
- Language: Python
- Size: 32.9 MB
- Stars: 10
- Watchers: 4
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - odp_sdk - Download queried ocean data easily and efficiently into data frames, for easy exploring and further processing in your data science project. (Hydrosphere / Ocean and Hydrology Data Access)
README
# ODP Python SDK
Connect to the Ocean Data Platform with Python through the Python SDK. Download queried ocean data easily and efficiently into data frames, for easy exploring and further processing in your data science project.
## Documentation
[WIP]
## Installation
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install the Ocean Data Platform Python SDK.
```bash
pip3 install odp_sdk
```
## Usage*Note: Accessing the Ocean Data Platform requires an authorized account. Contact ODP to require one.*
```python
from odp_sdk.client import OdpClientclient = OdpClient()
for item in client.catalog.list():
print(item)
```Examples can be found in /examples.