A demonstration showing how to build an integration with the MINDBODY SOAP API using Python 3 and Django 1.8. I did this in my spare time, so bugs are likely. I'll try to fix them as I find them.
https://mbodjango.herokuapp.com
virtualenv -p /usr/bin/python3.4 venv
. venv/bin/activate
pip install -r requirements.txt
SOURCENAME = 'yoursourcename' #SourceName to be used in all API Calls in this project
SOURCEPASS = 'yoursourcepass' #SourceName Password to be used in all API calls
# (this should be populated from some other place, not hard coded. However, since this is just a demonstration, you can of course plop them in here and make API calls until the cows come home.)
USERNAME = 'youruser'
USERPASS = 'yourpass' # staff credentials, etc
# SiteIDs to be used in all API Calls - should ALWAYS match for SourceCredentials and UserCredentials nodes. If you are new to the MINDBODY API, you should probably use site ID -99 until you have everything coded the way you like it. Otherwise, charges could be incurred.
SITEIDs = []
# optional stuff if you have a mail service. handles contact form stuff, and whatever else the developer decides to hook up. Form for comments is disabled because I didn't want anyone abusing it.
MAIL_SERVER = ''
MAIL_SERVER_USER = ''
MAIL_SERVER_PASS = ""
MAIL_SERVER_ADMIN = '' #email address of mail administrator
# !!!!!! DO NOT FORGET TO SET THIS!!!!!!
# This is what protects your session data, cookies, etc. Very important that it's STRONG!
APPLICATION_SECRET = ""
######While in your virtual environment, run
python3 manage.py syncdb
python3 manage.py runserver