pip install botmaker
make venv
source venv/bin/activate
export BOTMAKER_ACCESS_TOKEN={access_token}
make test
pip install -U setuptools wheel twine
make release
# PyPi will prompt you to log in
import botmaker
client = botmaker.Client() # Will use the env var BOTMAKER_ACCESS_TOKEN
# Send from '5215500000000' to '5215522222222'
client.template_messages.create(
'5215500000000', '5215522222222',
'template_name', template_param1='x', template_param2='y'
)