Metadata-Version: 2.1
Name: ivoy
Version: 0.4.0
Summary: Client library for iVoy
Home-page: https://github.com/cuenca-mx/ivoy-python
Author: Cuenca
Author-email: dev@cuenca.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (<3.0.0,>=2.22.0)
Requires-Dist: iso8601 (<0.2.0,>=0.1.12)
Requires-Dist: dataclasses (>=0.6) ; python_version < "3.7"
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-vcr ; extra == 'test'
Requires-Dist: pycodestyle ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: black ; extra == 'test'
Requires-Dist: isort[pipfile] ; extra == 'test'
Requires-Dist: flake8 ; extra == 'test'
Requires-Dist: mypy ; extra == 'test'
Requires-Dist: iso8601 ; extra == 'test'

# iVoy

[![Build Status](https://travis-ci.com/cuenca-mx/ivoy-python.svg?token=KUPW5wq7zSydeEVhVfVe&branch=master)](https://travis-ci.com/cuenca-mx/ivoy-python)
[![Coverage Status](https://coveralls.io/repos/github/cuenca-mx/ivoy-python/badge.svg?branch=master&t=VaY2TA)](https://coveralls.io/github/cuenca-mx/ivoy-python?branch=master)

[iVoy Mensajería](https://ivoy.mx) Python3.6+ Client Library

## Install

To setup your environment:

```bash
pip install ivoy
```

## Tests

```bash
make test
```

## Create Client

```python
from ivoy import Client

client = Client(
	auth_user= your_auht_user,
	auth_password= your_auth_password,
	ivoy_user= ivoy_system_user,
	ivoy_password= ivoy_system_password
)
```

