Metadata-Version: 2.1
Name: cryptocompsdk
Version: 0.3.1
Summary: Python SDK for CryptoCompare Personal API
Home-page: https://github.com/nickderobertis/cryptocompare-py
Author: Nick DeRobertis
Author-email: whoopnip@gmail.com
License: MIT
Project-URL: Code, https://github.com/nickderobertis/cryptocompare-py
Project-URL: Documentation, https://nickderobertis.github.io/cryptocompare-py
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pandas

# CryptoCompare-Py

## Overview

This is a Python SDK for the CryptoCompare APIs which require an API key.

https://min-api.cryptocompare.com/pricing

## Getting Started

Install `cryptocompsdk`:

```
pip install cryptocompsdk
```

A simple example:

```python
import cryptocompsdk

from cryptocompsdk import CryptoCompare
API_KEY = 'my-api-key'
cc = CryptoCompare(API_KEY)

data = cc.history.get(from_symbol='BTC', to_symbol='USD', exchange='Kraken')
df = data.to_df()
```

## Links

See the
[documentation here.](https://nickderobertis.github.io/cryptocompare-py/)


## Author

Created by Nick DeRobertis. MIT License.


