Metadata-Version: 2.1
Name: coinpaprika-sdk
Version: 1.0.0
Summary: Official coinpaprika API Python client
Home-page: https://github.com/coinpaprika/coinpaprika-api-python-client
Author: Coinpaprika
Author-email: coinpaprika <it@coinpaprika.com>
License: Apache License 2.0
Project-URL: Homepage, https://github.com/coinpaprika/coinpaprika-api-python-client
Project-URL: Bug Tracker, https://github.com/coinpaprika/coinpaprika-api-python-client/issues
Keywords: coinpaprika api cryptocurrency
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Coinpaprika API Python Client

## Usage

This library provides convenient way to use [Coinpaprika API](https://api.coinpaprika.com/) in Python.

[Coinpaprika](https://coinpaprika.com/) delivers full market data to the world of crypto: coin prices, volumes, market caps, ATHs, return rates and more.

For details and limitations please check the [documentation](https://api.coinpaprika.com/)

## Requirements

```text
pip install coinpaprika
```

## Getting started

### Free plan client 
```python
from coinpaprika import client as Coinpaprika

client = Coinpaprika.Client()
```

### Pro plan client
```python
from coinpaprika import client as Coinpaprika

client = Coinpaprika.Client(api_key="YOUR-API-KEY")
```
API KEY can be generated [https://coinpaprika.com/api/](https://coinpaprika.com/api/).

## Examples
Check out the [./examples](./examples) directory.

## Tests

```test
pip install -r test_requirements.txt

pytest tests/test_api_request.py
```

## License
CoinpaprikaAPI is available under the MIT license. See the LICENSE file for more info.

## Source
Based on repository which is not maintained anymore: 
[s0h3ck/coinpaprika-api-python-client](https://github.com/s0h3ck/coinpaprika-api-python-client) 
