Duplicated from hf-hackathon-2023-01/Spotify
7c4e98c 0d5194e 7c4e98c
1
2
3
4
5
6
7
8
9
import gradio as gr import spotipy def greet(name): return "Hello " + name + "!!" iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch()