lab2 / app.py
jacobda's picture
Update app.py
948b85d
raw
history blame contribute delete
316 Bytes
import gradio as gr
from pytube import YouTube
with demo:
gr.Markdown(
"""
# Flip Text!
Start typing below to see the output.
"""
)
input = gr.Textbox(placeholder="Flip this text")
output = gr.Textbox()
input.change(fn=flip_text, inputs=input, outputs=output)
demo.launch()