将文本处理脚本转换为 Python 中的 Web 应用程序

发布于 2024-12-18 03:32:15 字数 119 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若能看破又如何 2024-12-25 03:32:15

我相信使用 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

浸婚纱 2024-12-25 03:32:15

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文