A python package for interfacing with the Place API
To install from GitHub using pip:
pip install place-apiIf you don't have pip, it can be installed using the below command:
curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | pythonTo manually install place-python, you can download the source and run:
python setup.py installimport place
# set your api key
place.api_key = 'private_key_6fsMi3GDxXg1XXSluNx1sLEd'
# create an account
account = place.Account.create(
email='joe.schmoe@example.com',
full_name='Joe Schmoe',
user_type='payer'
)Read the docs