reactpy
v1.1.0
ReactPy 是一个用 Python 构建用户界面而无需使用 Javascript 的库。 ReactPy 接口由外观和行为类似于 ReactJS 中的组件组成。 ReactPy 的设计考虑到简单性,可供那些没有 Web 开发经验的人使用,同时也足够强大,可以随着您的雄心壮志而成长。
支持的后端 | |
---|---|
内置 | 外部的 |
Flask、FastAPI、Sanic、Tornado | Django、Jupyter、Plotly-Dash |
要大致了解如何在 ReactPy 中编写应用程序,请查看这个小型Hello World应用程序。
from reactpy import component , html , run
@ component
def hello_world ():
return html . h1 ( "Hello, World!" )
run ( hello_world )
请点击以下链接了解有关该项目的更多信息。