Metadata-Version: 2.1
Name: pangaeapy
Version: 0.0.2
Summary: 
        This module allows to download and analyse metadata as
        well as data from tabular PANGAEA (https://www.pangaea.de) datasets.        
Home-page: https://github.com/pangaea-data-publisher/pangaeapy
Author: PANGAEA® - Data Pub­lisher for Earth & En­vir­on­mental Sci­ence,Robert Huber,Markus Stocker,Egor Gordeev
Author-email: rhuber@uni-bremen.de
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: requests

# pangaeapy

This module allows to download and analyse metadata as well as data from tabular PANGAEA (https://www.pangaea.de) datasets.

## Installation

* Source code from [github](https://github.com/pangaea-data-publisher/pangaeapy)
    * `pip install git+https://github.com/pangaea-data-publisher/pangaeapy`


## Usage
```python
import pangaeapy.pandataset as pd
ds= pd.PanDataSet(787140)
print(ds.title)
print(ds.data.head())
```

## Examples
Please take a look at the example Jupyter Notebooks which you can find in the 'examples' folder


