import os import gradio as gr # Define the components using the specified URLs with gr.Blocks() as Instructions: gr.HTML("") with gr.Blocks() as Zip: gr.HTML("") with gr.Blocks() as Images: gr.HTML("") with gr.Blocks() as Text: gr.HTML("") with gr.Blocks() as JSON: gr.HTML("") with gr.Blocks() as YouTube: gr.HTML("") with gr.Blocks() as Downloader: gr.HTML("") # Set theme and title with gr.Blocks(theme="Nymbo/Nymbo_Theme", title="🥷Scraper Suite🥷") as demo: gr.HTML("

Scraper Suite

") gr.TabbedInterface( [Instructions, Zip, Images, Text, JSON, YouTube, Downloader], ['Scrape with Instructions', 'Scrape n Zip', 'Get Images', 'Get Text', 'Get JSON', 'YouTube Downloader', 'MP4 Downloader'] ) demo.queue().launch(debug=True)