将文本处理脚本转换为 Python 中的 Web 应用程序
我有一个 Python 文本处理脚本,我需要创建一个包含两个文本区域的网页。
第一个用于数据输入,第二个用于(异步)即时显示将数据传递到我的脚本的结果。使用 Python 实现此目的最简单/最快的方法是什么?
So I have a Python text-processing script, and I need to create a web page with two textareas.
The first one is for data input, and the second one is for (async) on-the-fly displaying the result of passing the data to my script. What is the easiest/fastest way to achive this with Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信使用 bottle 微型网络框架应该是最简单、最快的。你还可以查看 flask microwebframework ,它的想法几乎相同
I believe using bottle micro web framework whould be the easiest and fastest. you could also checkout flask microwebframework which is pretty much the same idea
您可以使用 bottle 等轻量级 Web 框架来创建 Web 服务器。然后,服务器提供一个 html,其中包含一些触发 AJAX 请求的 javascript,其中包含要处理的数据到您的网络服务器,而网络服务器又用处理后的数据进行响应。
You can use lightweight web framework like bottle to create a web server. The server then serves a html that contains some javascript firing AJAX requests containing the data to be processed to your webserver, which in turn responds with the processed data.