Metadata-Version: 2.1
Name: rcvpapi
Version: 1.5.8
Summary: Module to interact with Arista CloudVision
Home-page: https://github.com/networkRob/rcvp-api
Author: Rob Martin
Author-email: rjmarti88@icloud.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Description-Content-Type: text/markdown
Requires-Dist: requests

## CloudVision API (rCVP API)

This is a custom CVP API wrapper.

### Support

This has been tested on CVP versions:
- 2018.2.2
- 2018.2.3
- 2018.2.4

### Usage

Install using the Python Package Index

```
pip install rcvp-api
```

Import into Python

```
from rcvp-api import *

# Create connection to CloudVision
cvp_cnt = CVPCON(cvp_ip,cvp_user,cvp_user_pwd)

# Check current CloudVision session ID
cvp_cnt.SID

```

