slumber
slumber copied to clipboard
A library that makes consuming a RESTful API easier and more convenient
Hi. Will slumber support async/await?
It would be nice to have a separate serializer for posted data from the data returned from the server. This change: - incorporates commits from: https://bitbucket.org/newsletterfilter/slumber - resolves merge conflicts...
See part of #32 > If Location header is not full URL (doesn't start with http/s) it can be passed as id parameter and url_join function will join Location with...
Hi, I'm trying to interact with some drupal api that returns a 301 for puts. I'm not able to tell do slumber to rePOST on second api hit is there...
Hi, I have improved slumber for my own needs. I think the change is backward compatible: For any request you hav now the possibility to specify a new argument: class...
Updated the setup.py to correctly list the Python 2/3 support in the classifiers. Currently, it shows up as not supporting Python 3 on PyPI and related tools since no language...
I've been trying to use Slumber with an API that exposes both JSON and MessagePack; it works fine with the former but doesn't work at all when I try to...
As suggested in https://packaging.python.org/distributing/#license
See https://github.com/kennethreitz/requests/issues/1034
I'm working with a 3rd party REST api that has "get" as a rest endpoint: "/api/v1/groups/get/$identifier". Doesn't seem like I can do api.groups.get(identifier).get() as it probably translates the first get...