python-restconsumer
python-restconsumer copied to clipboard
RestConsumer is a generic python wrapper for consuming JSON REST APIs
This might be a bit messy to reviewb, but basically there are just a few changes: 1. Constructor takes requests_kwargs and passes them to requests calls. 2. Constructor takes response_wrapper...
While its easy to add headers={"Accept": "application/json"}), adding that as default may be a good idea, as we are only handling json data.
Cool project! Have you seen Slumber? http://slumber.in/ It seems to do all the python-restconsumer stuff. Are there differences or advantages w/ restconsumer? If so, you should put 'em front and...