mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
373c8dd716
* changes * changes * changes * changes * changes --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
24 lines
653 B
Python
24 lines
653 B
Python
import gradio as gr
|
|
|
|
demo = gr.Blocks(css="""#btn {color: red} .abc {font-family: "Comic Sans MS", "Comic Sans", cursive !important}""")
|
|
|
|
with demo:
|
|
default_json = {"a": "a"}
|
|
|
|
num = gr.State(value=0)
|
|
squared = gr.Number(value=0)
|
|
btn = gr.Button("Next Square", elem_id="btn", elem_classes=["abc", "def"])
|
|
|
|
stats = gr.State(value=default_json)
|
|
table = gr.JSON()
|
|
|
|
def increase(var, stats_history):
|
|
var += 1
|
|
stats_history[str(var)] = var**2
|
|
return var, var**2, stats_history, stats_history
|
|
|
|
btn.click(increase, [num, stats], [num, squared, stats, table])
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|