美文网首页
Shiny for Python

Shiny for Python

作者: 可能性之兽 | 来源:发表于2022-11-18 21:05 被阅读0次

Rstudio公司的骚操作很多呀(哦,现在应该叫Posit公司了)。不过shiny for python还很不稳定。按照它自己的说法就是可以玩但是最好目前不要用于实际的生产流程

image.png
pip install shiny
shiny create my_app
shiny run --reload my_app/app.py
from shiny import App, render, ui

app_ui = ui.page_fluid(
    ui.input_slider("n", "N", 0, 100, 20),
    ui.output_text_verbatim("txt"),
)


def server(input, output, session):
    @output
    @render.text
    def txt():
        return f"n*2 is {input.n() * 2}"


app = App(app_ui, server)

Shiny for Python (rstudio.com)

相关文章

网友评论

      本文标题:Shiny for Python

      本文链接:https://www.haomeiwen.com/subject/jdcawrtx.html