fruitpicker01's picture
Create app.py
04c268e verified
raw
history blame
415 Bytes
import gradio as gr
# HTML для прогресс-бара
progress_bar_html = """
<div style="width: 100%; background-color: #e0e0e0; border-radius: 10px; overflow: hidden;">
<div style="width: 7%; background-color: #4caf50; height: 20px; text-align: center; color: white;">
7%
</div>
</div>
"""
# Интерфейс Gradio
with gr.Blocks() as demo:
gr.HTML(progress_bar_html)
demo.launch()