Go to file
clerie 8f4a7b1f6d Introduce the different classes a bit more. 2022-01-17 14:00:47 +01:00
docs Introduce the different classes a bit more. 2022-01-17 14:00:47 +01:00
mitel_ommclient2 Move last components of session layer to client and remove session completely 2022-01-17 12:20:54 +01:00
.gitignore Add gitignore 2022-01-06 16:12:27 +01:00
LICENSE Add license and attribution 2022-01-06 16:20:46 +01:00
README.md Update API documentation 2022-01-17 12:29:14 +01:00

README.md

Mitel OMMClient2

Another attempt for a modern client library to the Mitel OM Application XML Interface.

Quicksart

Just some examples to give you an idea what this does.

import mitel_ommclient2

# Connect to your OMM
c = mitel_ommclient2.OMMClient2("omm.local", "admin", "admin")

# Use built in methods for common actions
c.ping()

# Create custom messages
r = c.request(mitel_ommclient2.messages.Ping(timeStamp=2342))

# Craft your own request, if it is not implemented yet
r = c.request(mitel_ommclient2.messages.DictRequest("Ping", {"timeStamp": 2342}))

Consult class documentation for more in depth examples and options.

Attribution

This software is inspired by python-mitel by Thomas and n-st.