Metadata-Version: 2.1
Name: py-nomics-client
Version: 1.0.0
Summary: Nomics API wrapper
Home-page: https://github.com/nlnsaoadc/py-nomics
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

# [Nomics REST API](https://nomics.com/) wrapper

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

Nomics REST API Doc: https://nomics.com/docs/

## Install

```bash
pip install py-nomics-client
```

## Usage

```python
from nomics import Nomics

n = Nomics(key="<your-key-here>")
n.get_market(base="BTC", quote="USD")
```

## Testing

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


