Skip to content

Commit 69a07aa

Browse files
committed
Merge branch 'release-v5.4.0'
2 parents aa61b16 + 7ce519b commit 69a07aa

File tree

9 files changed

+267
-713
lines changed

9 files changed

+267
-713
lines changed

netfoundry/__init__.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
""" Interface to NetFoundry API
2-
"""
1+
"""Interface to NetFoundry management API."""
32

3+
from . import _version
44
from .network import Network
55
from .network_group import NetworkGroup
66
from .organization import Organization
77

8-
from . import _version
98
__version__ = _version.get_versions()['version']

netfoundry/ctl.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/env python3
2-
r"""Command-line interface to the NetFoundry API
2+
r"""[Experimental] command-line interface to the NetFoundry API
33
Usage::
44
$ python3 -m netfoundry.ctl --credentials credentials.json
55
66
PYTHON_ARGCOMPLETE_OK
77
"""
8+
89
import pkg_resources # part of setuptools
910
from milc import cli
1011

@@ -34,4 +35,4 @@ def main(cli):
3435
network_group = netfoundry.NetworkGroup(Organization)
3536

3637
if __name__ == '__main__':
37-
cli()
38+
cli()

netfoundry/demo.py

+72-69
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)