Interface to the NetFoundry network-as-code orchestration Platform
Project description
Play the demo
This creates a demo network named "BibbidiBobbidiBoo" with your API account stored in ~/.netfoundry/credentials.json
Learn about getting an API account by reading the Authentication Guide
$ python3 -m netfoundry.demo BibbidiBobbidiBoo
INFO: running demo script in /home/alice/.pyenv/versions/3.9.0/lib/python3.9/site-packages/netfoundry/demo.py
Create network snippet from demo.py
#!/usr/bin/env python3 import netfoundry # default API account credential file is ~/.netfoundry/credentials.json Session = netfoundry.Session() # yields a list of Network Groups in Organization.networkGroups[], but there's typically only one group Organization = netfoundry.Organization(Session) # use the default Network Group (the first Network Group ID known to the Organization) NetworkGroup = netfoundry.NetworkGroup(Organization) # create a Network netName = "BibbidiBobbidiBoo" if netName in NetworkGroup.networksByName.keys(): # use the Network Network = netfoundry.Network(Session, networkName=netName) Network.waitForStatus("PROVISIONED",wait=999,progress=True) else: netId = NetworkGroup.createNetwork(netName) Network = netfoundry.Network(Session, networkId=netId) Network.waitForStatus("PROVISIONED",wait=999,progress=True) Network = netfoundry.Network(Session, networkId=netId)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size netfoundry-4.4.1-py3-none-any.whl (21.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size netfoundry-4.4.1.tar.gz (20.4 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for netfoundry-4.4.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9d46e99a6a702b32b041cc49521e5cc4f41a03624f69fcded23bcc63c7e6540 |
|
MD5 | 3ab678d2abe1b825445fb5da9254ea86 |
|
BLAKE2-256 | 58c0a7d10d3f5ad619a3c8d6103e5c24de16f7c1c65ea0941fef3175a4121fdc |