使用 Python WSGI 解析表单数据/多部分请求
是否有一个值得推荐的库来使用 Python 和 WSGI 解析表单数据和/或多部分请求?
Is there a recommendable library to parse form data and/or multi-part requests with Python and WSGI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 cgi.FieldStorage 来解析表单帖子等。
尽管使用 Werkzeug/Flask 可能会更好,它有自己的实现,效果更好,而且您可以获得更高级别的东西,这使事情变得更容易。
You can use cgi.FieldStorage to parse form posts etc.
You may be better off though using Werkzeug/Flask which has its own implementation which works a lot better, plus you get higher level stuff which makes things a lot easier.