Bryan Marty
Bryan Marty
It would be great to add pylibmc, to take care of that pesky libmemcached stuff :) I actually have a github project that builds this for lambda. Its a little...
Randomly my site will go down (perhaps once or twice a month) and display the following: { "message": "An uncaught exception happened while servicing this request. You can investigate this...
Fixes #233. Use the namespaced 'easy_thumbnails_tags' template tag instead of the 'thumbnails' template tag.
I tried to switch from bravado.requests.HTTPClient, to the FidoClient, but I get the following traceback when trying to use it. ``` Using virtualenv setup in /nail/home/bmarty/pg/scrubbed/virtualenv_run Traceback (most recent call...
#When we upgraded pylint, is started complaining about http://pylint-messages.wikidot.com/messages:e0710 Raising a new style class which doesn't inherit from BaseException For the following code: ``` try: ... except bravado.exception.HTTPError as exc:...
One of my endpoints responds with xml data. I specify in the swagger spec that this endpoint produces: application/xml. Despite this, trying to call result() returns a JSONDecodeError. If I...
I'm trying to write a spec that will perform a POST on a url like "domain.com/", note that the url is at the root. In the online Swagger Editor, this...
When using requests==2.11.0 ( the latest version) with the FidoClient, I get ``` Traceback (most recent call last): File "test_forward.py", line 66, in _request_options=_request_options, File "/nail/home/bmarty/pg/scrubbed/virtualenv_run/local/lib/python2.7/site-packages/bravado/http_future.py", line 70, in result...
According to http://bravado.readthedocs.io/en/latest/advanced.html#getting-access-to-the-http-response I can use {'also_return_response': True} to get the response. But that will only work on 200 codes. I would like to also get 404, 500 etc, but...
The current models do not support auto speccing. If you attempt to use mock.create_autospec with spec_set=True, you will get ``` AttributeError: Mock object has no attribute '' ``` I think...