Interface to the NetFoundry network-as-code orchestration Platform
Project description
User Guide
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
Organization = netfoundry.Organization(credentials="credentials.json")
# use some Network Group, default is to use the first and there's typically only one
network_group = netfoundry.NetworkGroup(Organization)
# create a Network
network_name = "BibbidiBobbidiBoo"
if network_name in network_group.networks_by_name.keys():
# use the Network
network = netfoundry.Network(network_group, network_name=network_name)
network.wait_for_status("PROVISIONED",wait=999,progress=True)
else:
network_id = network_group.create_network(name=network_name)['id']
network = netfoundry.Network(network_group, network_id=network_id)
network.wait_for_status("PROVISIONED",wait=999,progress=True)
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.
Source Distribution
netfoundry-4.9.1.tar.gz
(26.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netfoundry-4.9.1.tar.gz.
File metadata
- Download URL: netfoundry-4.9.1.tar.gz
- Upload date:
- Size: 26.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc320fc6a8cfba14027c9c097248463530f80db435c03d61dd6a52c72d0d35cb
|
|
| MD5 |
8807188a6d1c03756809f2a31785d66c
|
|
| BLAKE2b-256 |
47a5560479a3442f47e69676fe39fc371b040fa59e82df1593bef37a1efd1cd8
|
File details
Details for the file netfoundry-4.9.1-py3-none-any.whl.
File metadata
- Download URL: netfoundry-4.9.1-py3-none-any.whl
- Upload date:
- Size: 30.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
854fb875b67a13c220fa94a15899e6592214741434b47bc76f16423c760192fa
|
|
| MD5 |
d7e0587a05602c7d9f80de1dc3206c60
|
|
| BLAKE2b-256 |
95de845fddd26f333f6349679ed4509b7c93ef33e18b61a4dd5404c11fa2405e
|