Metadata-Version: 2.4
Name: pygeodl
Version: 0.0.2
Summary: Download geoscience data with ease.
Author-email: Morgan Plain <morgan@placeholder.com>
Maintainer-email: Morgan Plain <morgan@placeholder.com>
License-Expression: MIT
Project-URL: Homepage, https://example.com
Project-URL: Documentation, https://readthedocs.org
Project-URL: Repository, https://github.com/mp-v2/pygeodl.git
Project-URL: Bug Tracker, https://github.com/mp-v2/pygeodl/issues
Project-URL: Changelog, https://github.com/mp-v2/pygeodl/blob/main/CHANGELOG.md
Keywords: geoscience,data,download,gnss,unavco
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas>=2.2.2
Requires-Dist: requests>=2.32.3
Provides-Extra: test
Requires-Dist: pytest>=8.2.2; extra == "test"

# pygeodl

Download geoscience data with ease.

Currently suopports:
- UNAVCO: GNSS

## Installation

You can install `pygeodl` using pip:

```bash
pip install pygeodl
```

If you want to install it directly from the repository, you can do:

```bash
pip install git+https://github.com/mp-v2/pygeodl.git
```

## Usage

Here is a simple example of how to use `pygeodl` to download GNSS data from the UNAVCO repository.

```python
import pygeodl.gnss as gnss

# Create a downloader instance for UNAVCO
downloader = gnss.unavco()

# Request data for a specific station and time period
df = downloader.request(station="P201", start_date="2020-01-01", end_date="2020-01-02")

# Print the first few rows of the dataframe
print(df.head())
```

This will output a pandas DataFrame with the requested GNSS data.
