Spaces:
Running
Running
import gradio as gr | |
from tiktok import tiktok_parser | |
from bili import bili_parser | |
from bvid2acid import bv2acid | |
if __name__ == "__main__": | |
with gr.Blocks() as demo: | |
gr.Markdown( | |
"This site does not provide any video storage services, only to provide the most basic resolution services" | |
) | |
with gr.Tab("Tiktok"): | |
tiktok_parser() | |
with gr.Tab("Bilibili"): | |
with gr.Column(): | |
bv2acid() | |
bili_parser() | |
demo.launch() | |