文件名称:component-template:用于创建Streamlit组件的模板和示例代码
文件大小:302KB
文件格式:ZIP
更新时间:2024-05-24 19:32:05
streamlit Python
Streamlit组件模板 此存储库包含用于创建组件的模板和示例代码。 有关完整的信息,请参见! 概述 Streamlit组件由Python API和前端(使用您喜欢的任何网络技术构建)组成。 组件可以在任何Streamlit应用程序中使用,可以在Python和前端代码之间传递数据,并且可以选择在上分发以供世界其他地方使用。 在一行Python中创建组件的API: import streamlit . components . v1 as components # Declare the component: my_component = components . declare_component ( "my_component" , path = "frontend/build" ) # Use it: my_component ( greeting = "Hello" , n
【文件预览】:
component-template-master
----examples()
--------SelectableDataTable()
--------MaterialLogin()
--------CustomDataframe()
--------RadioButton()
----template-reactless()
--------MANIFEST.in(43B)
--------LICENSE(1KB)
--------setup.py(571B)
--------my_component()
----LICENSE(11KB)
----README.md(3KB)
----quickstart.png(140KB)
----template()
--------MANIFEST.in(43B)
--------LICENSE(1KB)
--------setup.py(571B)
--------my_component()
----.gitignore(2KB)