This is a language-specific API client for ReadMe Build. It's based on the api spec.
$ pip install api
Here's how you call it:
import api
api = api.config('...')
val, res = api('temp-deprecated').run('sayHello', {
'name': 'hi'
})
if res.error:
print 'oh no'
else:
print val
How do you run tests?
First, update the version in setup.py. Then run:
python setup.py sdist upload -r pypi
- Forked from https://github.com/p0bailey/python_pip