Go to file
clerie ac9ae74a0b Make the exception show you all unknown keys at once
In case a response type contains an unknown key, there are probably some 
more.
2022-06-16 23:00:22 +02:00
docs Restructuring api documentation 2022-05-01 22:43:52 +02:00
mitel_ommclient2 Make the exception show you all unknown keys at once 2022-06-16 23:00:22 +02: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 readme 2022-05-01 23:57:37 +02:00
ommcli Allow ommsync mode to be used in cli 2022-06-16 22:40:01 +02: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
m = mitel_ommclient2.messages.Ping()
m.timeStamp = 2342
r = c.connection.request(m)

Consult class documentation for more in depth examples and options.

Attribution

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