Metadata-Version: 2.1
Name: valr-simple-client
Version: 0.0.2
Summary: VALR API Client
Home-page: https://github.com/Moon-developer/Valr-simple-client
Author: Marco Fernandes
License: MIT
Keywords: python,package,valr,crypto,api,rest,client
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Software Development
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# VALR Simple Python Client

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/valr-simple-client)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/valr-simple-client)
![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/Moon-developer/Valr-simple-client?label=version)  
![PyPI - Status](https://img.shields.io/pypi/status/valr-simple-client)  
A Simple Python Library to integrate with [VALR API](https://docs.valr.com).

## Cloning source

Get this package by:

```shell
$ git clone https://github.com/Moon-developer/Valr-simple-client.git
```

Activate the virtual environment with venv before coding, testing & packaging:

```shell
$ cd .
$ python3 -m venv .dev_env
$ source .dev_env/bin/activate
$ python3 -m pip install -r requirements.txt
```

Required `ENVIRONMENT` variables:

```dotenv
VALR_KEY='valr_key'
VALR_SECRET='valr_secret'
```

Example Usage, See `example.py` file:

```shell
$ python3 example.py
```


