You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 weeks ago | |
---|---|---|
docs | 2 months ago | |
mitel_ommclient2 | 2 weeks ago | |
.gitignore | 6 months ago | |
LICENSE | 6 months ago | |
README.md | 2 months ago | |
ommcli | 2 weeks ago |
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.