Joshua Bronson
Joshua Bronson
Just to clarify what the problem is, when `only` is used in a Marshmallow schema for a particular endpoint, Flask-Rebar omits all the other fields in the corresponding model definition...
Just noting that since this issue was last updated, the development branch has dropped Python 2 and 3.4 support (in #205) as of several months ago, nice.
- should we deprecate Request and ResponseSchema at the same time? - docs and changelog?
Thanks, good to know! I should have said, this is not actually something I need at this time, since I'm handling the unsupported authentication schemes in some lightweight middleware that...
One thing I noticed about the current API is that we have only a single type that's trying to represent all supported Authorization headers – and likewise for WWW-Authenticate –...
Wonder if it's worth using [`__init_subclass__()`](https://docs.python.org/3/reference/datamodel.html#object.__init_subclass__) here instead. A super simplified version might look like: ```python from abc import ABC, abstractmethod from base64 import b64encode, b64decode class Authorization(ABC): __subclass_by_scheme =...
On Jul 2, 2018 @davidism writes: > Apparently it's being tried in urllib3, but I don't know enough about it. Just saw this from a while back – if anyone's...
Restarted my machine earlier today and just noticed Flycut's icon is now white. Not sure if just restarting Flycut would have done the trick, but I'll leave this open in...
Great, thanks!
I hit this too, in tests trying to simulate an AJAX client that first hits a `GET /csrf` endpoint to fetch a CSRF token that it then includes in a...