Metadata-Version: 2.1
Name: gliderpy
Version: 0.0.4
Summary: Glider Data Fetcher
Home-page: https://github.com/ioos/gliderpy
Author: Callum Rollo, Filipe Fernandes, Lindsay Abrams
Author-email: c.rollo@outlook.com
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: erddapy

## gliderpy

Gliderpy aims to facilitate effortless access to glider data hosted on ERDDAP servers. Gliderpy is a high level wrapper around [erddapy](https://github.com/ioos/erddapy), with glider specific tooling and in-built plotting methods.

Try it out on binder [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/oceanhackweek/ohw20-proj-glide-data-fetcher/master)

### Documentation and code

URLs for the docs and code.

### Installation

For `conda` users you can

```shell
conda install --channel conda-forge gliderpy
```

or, if you are a `pip` users

```shell
pip install gliderpy
```

### Example

```python
from gliderpy.fetchers import GliderDataFetcher

glider_grab = GliderDataFetcher()

glider_grab.fetcher.dataset_id = "whoi_406-20160902T1700"
df = glider_grab.to_pandas()

```


