David Multer

Results 16 comments of David Multer

Good stuff. Also might make sense to consider Swagger/OpenAPI model generation for input/output API models. Could implement this in a phase 2, but might be a good idea to consider...

I haven't tried it, but I assume changing the `api_gateway_stage` config.json value wouldn't solve this problem. If it does, maybe it solves this issue? I'm in need of the same...

> #518 > > encryption_enabled argument can be passed to Model.create_table > `Model.create_table(wait=True, encryption_enabled=True)` It should be noted in new documentation describing this feature that setting `encryption_enabled=True` will enable encryption...

I'm not quite using it yet either, but I do think Chalice needs to support usage for those that partition environments (dev, beta, prod, etc) across multiple AWS accounts. I"m...

For me, it's been installed and working fine for a long time. Today I did my periodic `yarn upgrade` and got this error.

Problem solved by falling back to Node v10. Turns out Node v12 requires Gulp 4, and Semantic-UI is not compatible with Gulp 4 yet. See the closed issue for [Gulp...

I've just switched my existing flask-restplus project over to flask-restx. Thanks a ton to all contributors for taking this on! I have custom error handlers that worked before and after...

No, I just enumerated all the Python exceptions: ```python @api.errorhandler(AssertionError) @api.errorhandler(AttributeError) @api.errorhandler(IndexError) @api.errorhandler(IOError) @api.errorhandler(KeyError) @api.errorhandler(NameError) @api.errorhandler(MemoryError) @api.errorhandler(OSError) @api.errorhandler(RuntimeError) @api.errorhandler(SyntaxError) @api.errorhandler(SystemError) @api.errorhandler(TypeError) @api.errorhandler(ValueError) def handle_python_exception(error): '''Python errors''' return dict(message=f"Internal error: {str(error)}"),...