Spaces:
Sleeping
Sleeping
File size: 2,089 Bytes
1db582e af7c474 c67ad58 af7c474 c67ad58 1db582e af7c474 1db582e af7c474 c67ad58 737d007 3cb650b c67ad58 3cb650b c67ad58 3cb650b c67ad58 3cb650b c67ad58 3cb650b c67ad58 3cb650b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
import gradio as gr
from uuid import uuid4
from fileManager import FileManager # Assuming fileManager is defined elsewhere
import re
import os
import random
import string
import glob
##############################################################
# File Upload and Storage Functionality
##############################################################
fileManager = FileManager()
fileManager.start()
def saveFile(file):
with open(file.name, "rb") as rfile:
file_infor = fileManager.saveFile(rfile.read(), file.orig_name)
return f"https://emee-nx-storage.hf.space/file=./{file_infor['path']}"
##############################################################
# Random File Generation Functionality (Optional)
##############################################################
def generate_random_string(length=100):
"""Generate a random string of fixed length."""
return ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(length))
num_files=10
file_length=1000
def generate_random_files(directory):
if not os.path.exists(directory):
return
for i in range(num_files):
file_name = os.path.join(directory, f'random_file_{i}.txt')
with open(file_name, 'w') as f:
for _ in range(file_length):
f.write(generate_random_string() + '\n')
##############################################################
# The Gradio App with Combined Functionality
##############################################################
with gr.Blocks() as demo:
# File Upload for Saving
with gr.Column():
uploaded_file = gr.File(label="Upload File")
save_button = gr.Button(value="Save File")
output_text = gr.Textbox(label="File URL")
# Random File Generation (Optional)
with gr.Column():
generate_button = gr.Button(value="Generate Random Files")
save_button.click(lambda: output_text.setValue(saveFile(uploaded_file)) if uploaded_file else None)
generate_button.click(lambda: [generate_random_files(d) for d in ["/home/user/app", "/data"]])
demo.launch()
|