aliabd HF staff commited on
Commit
e9b7d23
1 Parent(s): f3fd0ac

Upload with huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +6 -6
  2. app.py +13 -0
  3. screenshot.gif +0 -0
README.md CHANGED
@@ -1,12 +1,12 @@
 
1
  ---
2
- title: Hello Blocks
3
- emoji: 🏢
4
- colorFrom: yellow
5
- colorTo: gray
6
  sdk: gradio
7
  sdk_version: 3.3.1
 
8
  app_file: app.py
9
  pinned: false
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+
2
  ---
3
+ title: hello_blocks
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.3.1
9
+
10
  app_file: app.py
11
  pinned: false
12
  ---
 
 
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!"
5
+
6
+ with gr.Blocks() as demo:
7
+ name = gr.Textbox(label="Name")
8
+ output = gr.Textbox(label="Output Box")
9
+ greet_btn = gr.Button("Greet")
10
+ greet_btn.click(fn=greet, inputs=name, outputs=output)
11
+
12
+ if __name__ == "__main__":
13
+ demo.launch()
screenshot.gif ADDED