gpt4 book ai didi

python - 为 python 应用程序创建 Web 界面的最佳策略是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 10:57:17 26 4
gpt4 key购买 nike

我创建了一个简单的基于 gstreamer 的 python 音频应用程序,它带有一个 GTK+ GUI,用于从 XML 列表中挑选和播放网络流。然后我将我的 PC 扬声器输出连接到带有大扬声器和 presto 的旧立体声接收器的输入,我有一个非常好的音响系统,在我家里的大部分地方都能听到。

现在我想添加一个 Web 用户界面,以便从有计算机的房间以外的房间远程控制应用程序,但到目前为止,我所有的尝试都没有结果。

特别是我想知道是否有可能创建一种带有信号的套接字,例如 GTK GUI 的信号,以运行更改 gstreamer 参数的方法。

或者是否有更现实/可行的策略?

在此先感谢您的帮助!

最佳答案

你可以使用 Bottle ,一个非常简单的微型网络框架。

Bottle is a fast, simple and lightweight WSGI micro web-framework for Python. It is distributed as a single file module and has no dependencies other than the Python Standard Library.

Hello World :

from bottle import route, run

@route('/hello/:name')
def index(name='World'):
return '<b>Hello %s!</b>' % name

run(host='localhost', port=8080)

关于python - 为 python 应用程序创建 Web 界面的最佳策略是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8747865/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com