Skip to main content

A python library for vADC

Project description

A library for interacting with the REST API of Brocade vADC.


To install, either clone from github or “pip install pyvadc”

To use (standalone vTM):

from pyvadc import Vtm, VtmConfig
config = VtmConfig("https://vtm1:9070/", "admin", "password")

vtm = Vtm(config)
vtm.get_pools()
...

To Use with BSD:

from pyvadc import Bsd, Vtm, BsdConfig
config = BsdConfig("https://sd1:8100/", "admin", "password")
bsd = Bsd(config)
bsd.add_vtm("vtm1", "password", "172.17.0.2", 100, "STM-400_full")
bsd.get_status("vtm1")

# We can now manage vTMs by proxying.
vtm1 = Vtm(config, vtm="vtm1")
vtm1.get_pools()
...

Enjoy!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyvadc-0.0.7.tar.gz (9.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page