This Gradio component shows your entire space file system, dependencies, system variables, and more.
Can add to any Gradio space for debugging.
import gradio as gr
from hf_explorer.file_explorer import FileExplorer
with gr.Blocks() as demo:
# Just instantiate the component class!
FileExplorer()
demo.launch()