Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 434 Bytes

File metadata and controls

22 lines (18 loc) · 434 Bytes

Maxemail JSON Client (Python)

Self contained JSON client in Python for simplifying access to the Maxemail API

Usage Example

# Instantiate Client:
import mxm
config = {
    'host'     :'maxemail.emailcenteruk.com',
    'username' :'api@user.com',
    'password' :'apipass'
}
client = mxm.Api(**config)


# General:
result = client.serviceName.method(arg1, arg2)
print result