Python Client for Python RecordBin
pip install recordbin
>>> from recordbin import RecordBin
>>> recordbin = RecordBin('http://api.recordbin.co', token='123')
>>> recordbin.post({'username': 'gtalarico'})
By default records are posted asynchronously and responses
are Future objects.
To get the post response use the result()
method
>>> future = recordbin.post({'username': 'gtalarico'})
>>> response = future.result()
>>> record = response.json()