MasterControl WebServices API Abstraction Module in Python
Simply download mcwspy.py and place in your workspace directory, then
>> import mcwspy as mc
Ensure that you have a .env in your workspace directory with the variables:
API_KEY=<your API key here>
SITE_URL=<your site URL to ws json bridge>
Then you can start a new session:
>> s = mc.Session()
It's as simple as accessing the instance methods of Session, e.g.:
>> print(s.get_all_users(99999, False).json())