Spotify / app.py
sbrandeis's picture
sbrandeis HF staff
Update app.py
0d5194e
raw
history blame
165 Bytes
import gradio as gr
import spotipy
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()