Metadata-Version: 2.1
Name: py-cryptowatch-client
Version: 1.0.0
Summary: Cryptowatch API wrapper
Home-page: https://github.com/nlnsaoadc/py-cryptowatch
Author: nlnsaoadc
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# [Cryptowatch API](https://cryptowat.ch/) wrapper

[![py-cryptowatch-client-pypi](https://img.shields.io/pypi/v/py-cryptowatch-client.svg)](https://pypi.python.org/pypi/py-cryptowatch-client)

Cryptowatch Doc: https://docs.cryptowat.ch/rest-api/

## Install

```bash
pip install py-cryptowatch-client
```

## Usage

```python
from cryptowatch import Cryptowatch

cw = Cryptowatch(key=None)
cw.get_market_prices()
```

## Testing

```bash
virtualenv venv
source ./venv/bin/activate
pip install -r dev_requirements.txt
deactivate
source ./venv/bin/activate
pytest
```


