Skip to content

nigelm/broadworks_ocip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c0c71c3 · Mar 2, 2022
Jan 29, 2022
Mar 2, 2022
Mar 2, 2022
Mar 2, 2022
Feb 14, 2022
Mar 2, 2022
Jun 15, 2020
Nov 17, 2020
Jan 29, 2022
Feb 12, 2022
Feb 12, 2022
Jun 15, 2020
Jan 29, 2022
Jan 29, 2022
Feb 12, 2022
Feb 12, 2022
Feb 12, 2022
Feb 12, 2022

Repository files navigation

Broadworks OCI-P Interface

Tests documentation pypi version

broadworks_ocip interfaces to the OCI-P provisioning interface of a Broadworks softswitch


Features

  • python objects to match all Broadworks schema objects
  • API framework to talk to a Broadworks server
  • additional magic to handle authentication and sessions
  • Based on Broadworks schema R21

Current Version

Version: 1.5.0


Installation

With pip:

python3 -m pip install broadworks-ocip

Usage

More details is given within the usage section of the documentation, but the minimal summary is:-

from broadworks_ocip import BroadworksAPI

# configure the API, connect and authenticate to the server
api = BroadworksAPI(
    host=args.host, port=args.port, username=args.username, password=args.password,
)

# get the platform software level
response = api.command("SystemSoftwareVersionGetRequest")
print(response.version)

Credits

The class is built using Michael DeHaan's ClassForge object system.

Development on the python version was done by Nigel Metheringham <nigelm@cpan.org>

Karol Skibiński has been using the package, and has a talent for both finding bugs within it and providing a good bug report that allows a test case and fix to be made. The package has been immensely improved by this work.