Jason Horman
Jason Horman
https://github.com/coleifer/flask-peewee/blob/0.6.5/flask_peewee/serializer.py#L25 ``` python elif isinstance(value, (list, tuple)): data[key] = map(self.clean_data, value) ``` This fails in a few ways. clean_data will be called, but actually will receive the first item in...
Wanted to suggest Airline, for a command line interface builder. Python developers are used to using something like clize for this. https://github.com/airlift/airline
Manually bound `Key`s end up caching a value you might expect to be thread local with `ThreadLocalScope`. The problem is that for manually bound items, a `InstanceProvider(to)` is created. Then...
By default only html will be gzipped. I imagine lots of heroku customers are using it to deploy api's. It would be great to have json, xml, others, enabled. ```...
If _base_ is ``` http://localhost.local:5000/ ``` and _loc_ is ``` http://localhost.local:5000/home ``` then ``` loc = loc.slice(base.length + 1, loc.length); ``` produces _ome_ instead of _home_.
SimpleHeader.check_valid seems to only end up checking 1 param before returning True, and so not all the validation happens I think. https://github.com/twaldear/flask-secure-headers/blob/master/flask_secure_headers/headers.py#L11 Also, I am getting a validation exception for...
I would like to be able to have workers shutdown more quickly. Having this set to 20 when the queue is empty means slow deploys.
Allow tasks to change the visibility timeout of the message they are handling. When a task fails, immediately make it available again instead of waiting for visibility timeout. Fixes https://github.com/spulec/PyQS/issues/47
Also lowers the default polling interval to 10, 20 is just a long time to wait, and leads to shutdowns taking a long time. Fixes #60
Trying to follow the flow here. https://github.com/EverythingMe/geodis/blob/master/geodis/index.py#L228 ``` if not store: redisConn.zunionstore(tmpKey, list(closest)) return redisConn.zrevrange(tmpKey, 0, -1, withscores=True) else: return list(closest) ``` It looks like if I don't want to...