Metadata-Version: 2.1
Name: covidata
Version: 0.0.5
Summary: Easily access NASA, ESA and JAXA data
Home-page: https://github.com/lusmoura/Nasa-space-apps
Author: Control-space
Author-email: author@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: lxml

# Covidata

Easily access NASA, ESA and JAXA data

## About

You can use this API to access and see statistics about NASA, JAXA and ESA datasets. Check the available datasets and how to use them bellow.

## Available Datasets
### ESA
    mortality and natality
    coronavirus cases worldwide

### JAXA
    greenhouse gases concentration

### NASA
    landslides
    atmospherical data

## Main Functions
### Constructors
    Initialize an object with the required data

### Describe
    Generete statistics about all the features in the dataset, such as mean, standard deviation and quartiles.

## Examples
```python
from covidata.nasa import Landslides

LS = Landslides(subset=100, verbose=True)

print(LS.summarize())
print(LS.head())
```


