Peter Doggart
Peter Doggart
@thedumbterminal This is on my to-do list. Just haven't had a chance to do any updates lately, but I will make sure this makes it into the next release.
See https://github.com/python-restx/flask-restx/issues/505 Unfortunately, marshmallow is not directly supported and is unlikely to be in the short term.
@peterhorsley How is this application being deployed? I suspect you are probably correct in that flask-restx is not designed to be thread safe! However, I have a production application deployed...
Just pinning this to keep it at the top. It is our intention to update flask-restx to support Flask 3.0.0+ as soon as possible, but it is currently blocked because,...
@safe I've created a PR for this. Can you just run your eye over it and make sure it's all fine? https://github.com/python-restx/flask-restx/pull/579
I have now released flask-restx==1.2.0 which contains restrictions on some version until we can get everything updated (still awaiting pytest-flask updates) so that a default installation isn't broken. Anyone who...
@nachitox Great news. I will try and get everything merged over the coming days, pretty flat out with other things this week.
I haven't forgotten about this, just got very little time atm. It's still on my to-do list!
Flask-restx community, thanks for your patience on this! :) I have just merged all the most recent PRs and done some general tidy up. Flask-restx 1.3.0 should hit PyPi in...
Flask puts form data in a different place in the `Request` object. You need to call `request.form` to get form data directly. As you see, `request.json` will be empty or...