Interface to the NetFoundry network-as-code orchestration platform
Project description
NetFoundry Python Module
This module has a general-purpose library for using the NetFoundry API and installs the CLI nfctl.
User Guide
Find the Version
$ python3 -m netfoundry.version
v5.2.0
# or
$ nfctl version
v5.2.0
Play the demo
This creates a demo network with your API account file named credentials.json stored in the current directory or the XDG config directory e.g. ~/.config/netfoundry/. Learn how to obtain and use an API account for your NetFoundry organization in the Authentication Guide
nfctl demo
Create network snippet from demo.py
#!/usr/bin/env python3
import netfoundry
# user-default path is ~/.netfoundry/
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_group.network_exists(network_name):
# use the network
network = netfoundry.Network(network_group, network_name=network_name)
network.wait_for_status("PROVISIONED")
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")
Publish a new version of the module
00:00 Welcome Pythonistas
00:50 Determine next version number
01:30 GitFlow Release Start
02:10 Project Conventional Release Branch Name in Actions Workflow
02:30 Make a Change to Patch the Module
04:00 Git Commit the Change
04:30 GitFlow Publish Release to Git Remote
05:00 Create Pull Request
05:30 GitHub Actions Checks Triggered by Pull Request
06:00 Local testing with "editable" module and TestPyPi
09:00 Complete Pull Request
09:30 GitFlow Release Finish and Push Git Tags
10:30 GitHub Create Release
12:00 Verify Published Artifacts in PyPi and Hub
12:30 PyPi Upgrade Gets New Version
13:30 Docker Run Check Version
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
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-5.11.3.tar.gz.
File metadata
- Download URL: netfoundry-5.11.3.tar.gz
- Upload date:
- Size: 121.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22323334347de95ba57b4f1339d471f3bf65bcd9312b866960ad3f304c2600a7
|
|
| MD5 |
32ef4a94a77cef6db02c53b76d325aed
|
|
| BLAKE2b-256 |
b2816d780d5a32870e2791a0554fe0ddd04aba4172cc5ac2adb5391b52f06082
|
File details
Details for the file netfoundry-5.11.3-py2.py3-none-any.whl.
File metadata
- Download URL: netfoundry-5.11.3-py2.py3-none-any.whl
- Upload date:
- Size: 105.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae2259645c0ce2f677f4bceff342c2914f8c55a7e9f6e229495c2d116249f84b
|
|
| MD5 |
4ab36d6fb0bd80bb41f30d03899049ae
|
|
| BLAKE2b-256 |
74a8488de1e900fca979b4a3efbfac862c5a4c8de62bb1ca814ed32b43e31207
|