testapp / app.py
thamada's picture
Update app.py
76a5ef9 verified
raw
history blame
161 Bytes
import gspread
import gradio as gr
def display_message():
return "こんにけは"
iface = gr.Interface(fn=display_message, outputs="text")
iface.launch()