Skip to main content

Python SDK for BroadWorks OCI (Open Client Interface) API

Project description

Mercury

Downloads Downloads Downloads pypi version

Mercury is an SDK for interfacing with Broadworks OCIP interface either via TCP or SOAP.


Overview

Mercury has extensive documentation, automation, and more to better manage Broadworks instances.

The package is currently actively managed by the Dev Team at Fourteen IP the leading solution of hosted telephony in the hospitality industry. The team is working with the whole company including platform and telephony engineers with decades of experience.

The goal of the solution is to ease the management of Broadworks and give engineers tooling to better configure and administrate.


Important Legal Notice

Mercury is an independent, open-source project and is NOT affiliated with, endorsed by, or supported by Cisco Systems, Inc.

BroadWorks is a product and trademark of Cisco Systems, Inc. Mercury provides a client interface to interact with BroadWorks systems via the Open Client Interface Protocol(OCI-P).

Mercury does not bypass, circumvent, or provide any additional permissions or licenses. To use Mercury, you must:

  • Have an active, licensed BroadWorks system from Cisco
  • Possess valid credentials and appropriate access permissions
  • Comply with all Cisco licensing terms and agreements

The OCI-P commands implemented in Mercury are generated from XML schemas. These schemas are:

Copyright © 2018 BroadSoft Inc. (now part of Cisco Systems, Inc.) All rights reserved.

Mercury implements these publicly documented interfaces and does not include any proprietary Cisco code or intellectual property. All command structures follow the official OCI-P specification.


Features

  • Interface with Broadworks OCIP via SOAP or TCP
  • Command logic to seamlessly use API
  • Asynchronous version
  • Bulk and automated features (Requested by Broadworks engineers with decades of experience)

If you would like to submit a feature request please raise an issue detailing your request.


Installation

Install Mercury using pip:

pip install mercury-ocip

Basic Usage

Here's a simple example to get you started:

from mercury import Client

#SOAP (recommended for most cases):
client = Client(
    host="https://your-server.com",  # No /wsdl suffix needed
    username="your_user",
    password="your_pass",
    conn_type="SOAP"
)

#TCP (for legacy systems or specific requirements):
client = AsyncClient(
    host="broadworks.company.com",
    port=2209,  # Usually 2209/2208 for TCP
    username="admin",
    password="password",
    conn_type="TCP",
    tls=True  # Set False for unencrypted (not recommended)
)

# example usage
response = client.raw_command("SystemSoftwareVersionGetRequest")

print(response)
# Returns: SystemSoftwareVersionGetResponse(version='24')

print(response.to_dict()) 
# Returns: {'version': '24'}

print(response.to_json()) 
# Returns: '{'version': '24'}'

print(response.to_xml()) 
# Returns: <command ... "SystemSoftwareVersionGetResponse"><version>24</version></command>

Agent Usage (In Development)

Here's a simple example to get you started:

from mercury import Client, Agent

client = Client(
    host="url",
    username="username",
    password="password",
)

agent = Agent.get_instance(client)

agent.automate.find_alias(
    "servicePovider",
    "groupId",
    alias=0
) # returns Broadworks enity where alias is assigned.

agent.bulk.create_users_from_csv(
    path="local/file/path"
) # Bulk builds all users in predefined bulk sheet

Command Line Interface

The CLI is now part of this package. You can manage BroadWorks instances directly from your terminal without installing anything extra.

Running the CLI

After installation:

mercury-cli

CLI docs: mercury-cli-docs.14ip.net


Credits

This package builds upon the excellent work of the Broadworks OCI-P Interface package. Special thanks to:

@nigelm (Nigel Metheringham) – Developer of the original Python version.

Karol Skibiński – For extensive testing, bug reporting, and valuable contributions.

@ewurch (Eduardo Würch) – For contributing the R25 schema update and other improvements.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mercury_ocip-1.1.1.tar.gz (532.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mercury_ocip-1.1.1-py3-none-any.whl (550.1 kB view details)

Uploaded Python 3

File details

Details for the file mercury_ocip-1.1.1.tar.gz.

File metadata

  • Download URL: mercury_ocip-1.1.1.tar.gz
  • Upload date:
  • Size: 532.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for mercury_ocip-1.1.1.tar.gz
Algorithm Hash digest
SHA256 6822a81ede1fd8ac65b901f9fce197afbf82807bec2f0853f07f4cb25acd646a
MD5 c73d3bdd4915e41ac898f0ab7ac76c61
BLAKE2b-256 851d5e0ac31f520c191bd42f448f1066adfa1035042f8b21eb7996604f55349f

See more details on using hashes here.

File details

Details for the file mercury_ocip-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: mercury_ocip-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 550.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for mercury_ocip-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5564bc75c6a34eedc822ca623d861a9040f418f03c6ea529087c792dcc9dd7ef
MD5 970a275b9a3dc0f38f30a00a27a24657
BLAKE2b-256 ab533cd8b70e953845732075c744651b28090eea5f1bcf0d3a66a126ed88b48c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page