Spaces:
Running
Running
File size: 519 Bytes
0f30007 7b8f88d 0f30007 7b8f88d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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()
|