Go to file
clerie cf3c16c66a Refactor message classes
Message classes allow dynamic attribute access to message fields. Childs
get exposed through a dedicated class by attributes too. Message type
fields and childs have types that get enforces. None type is allowed
too while transitioning.
2022-05-01 22:32:08 +02:00
docs Refactor message classes 2022-05-01 22:32:08 +02:00
mitel_ommclient2 Refactor message classes 2022-05-01 22:32:08 +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 Remove DictRequest type 2022-04-02 21:23:43 +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
r = c.connection.request(mitel_ommclient2.messages.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.