Metadata-Version: 2.1
Name: vectra-api-tools
Version: 1.1rc0
Summary: Vectra API client library
Home-page: https://github.com/vectranetworks/vectra_api_tools
Author: Vectra
Author-email: tme@vectra.ai
License: Apache 2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Utilities
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pytz
Requires-Dist: cabby
Requires-Dist: stix

### Introduction
*Vectra API Tools* is set of resources that is designed to save time and repetitive work by providing a python library that simplifies interaction with the Vectra API, scripts that can be run from the command-line, and additional resources that can help with the Vectra API. It was built to be a project to allow not only Vectra, but the Vectra community to contribute to the success of its customers.

The current repository is broken down into the following:
* *modules* - this directory contains the modules associated with the VAT library
* *scripts* - collection of scripts to interact with the Vectra api. These scripts can be used as-is or as a reference on how to leverage the VAT library
* *test* - collection of tests that can be used to validate the VAT library
* *Vectra\_APIv1.postman\_collection* is a Postman collection for the Vectra API. It has all of the current endpoints and and associated parameters for each endpoint

**Wiki**  
https://github.com/vectranetworks/vectra_api_tools/wiki

**Current version**  
1.1rc0

**License**  
Apache 2

**Installation**  
pip install from pypi:  
```
pip install vectra_api_tools
```
pip install develop branch from github:
```
pip install git+https://github.com/vectranetworks/vectra_api_tools.git@develop
```
source:
```
python setup.py install
```


