Metadata-Version: 2.1
Name: hypervector-wrapper
Version: 0.0.13
Summary: Python wrapper to use the Hypervector API. Better data tests
Home-page: https://github.com/hypervectorio/hypervector-wrapper
Author: Jason Costello, Hypervector Limited
Author-email: jason@hypervector.io
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: requests (~=2.25.0)
Requires-Dist: numpy (>=1.19.5)
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'
Requires-Dist: responses (~=0.12.1) ; extra == 'dev'
Requires-Dist: twine (~=3.4.1) ; extra == 'dev'
Requires-Dist: tox (~=3.23.0) ; extra == 'dev'

# hypervector-wrapper

![workflow](https://github.com/hypervectorio/hypervector-wrapper/actions/workflows/main.yml/badge.svg)
[![PyPI version](https://badge.fury.io/py/hypervector-wrapper.svg)](https://pypi.python.org/pypi/hypervector-wrapper/)

Python wrapper to access the Hypervector API, providing easy deserialisation of Hypervector
resources to Python objects for building your data-driven test suite.

## Docs

Full API and wrapper docs are available at [https://docs.hypervector.io](https://docs.hypervector.io), along with
release history and usage examples.

## Installation

```python
pip install hypervector-wrapper
```

Note: requires Python 3.6+

You can install the development dependencies and run tests with:

```python
pip install -e ".[dev]"
pytest
```

