awacke1 commited on
Commit
a665677
·
verified ·
1 Parent(s): f7a0429

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -132,7 +132,8 @@ class DiffusionBuilder:
132
  return self.pipeline(prompt, num_inference_steps=20).images[0]
133
 
134
  def generate_filename(sequence, ext="png"): return f"{sequence}_{time.strftime('%d%m%Y%H%M%S')}.{ext}" # ⏳ Generate filename with timestamp magic!
135
- def pdf_url_to_filename(url): return f"{re.sub(r'[<>:\"/\\|?*]', '_', url)}.pdf" # 📄 Convert URL to a safe PDF filename – no hackers allowed!
 
136
  def get_download_link(file_path, mime_type="application/pdf", label="Download"): return f'<a href="data:{mime_type};base64,{base64.b64encode(open(file_path, "rb").read()).decode()}" download="{os.path.basename(file_path)}">{label}</a>' # 🔗 Create a download link – click it like it's hot!
137
  def zip_directory(directory_path, zip_path):
138
  with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf: [zipf.write(os.path.join(root, file), os.path.relpath(os.path.join(root, file), os.path.dirname(directory_path))) for root, _, files in os.walk(directory_path) for file in files] # 🎁 Zip directory: Packing files faster than Santa on Christmas Eve!
 
132
  return self.pipeline(prompt, num_inference_steps=20).images[0]
133
 
134
  def generate_filename(sequence, ext="png"): return f"{sequence}_{time.strftime('%d%m%Y%H%M%S')}.{ext}" # ⏳ Generate filename with timestamp magic!
135
+ def pdf_url_to_filename(url):
136
+ return re.sub(r'[<>:"/\\|?*]', '_', url) + ".pdf" # 📄 Convert URL to a safe PDF filename – no hackers allowed!
137
  def get_download_link(file_path, mime_type="application/pdf", label="Download"): return f'<a href="data:{mime_type};base64,{base64.b64encode(open(file_path, "rb").read()).decode()}" download="{os.path.basename(file_path)}">{label}</a>' # 🔗 Create a download link – click it like it's hot!
138
  def zip_directory(directory_path, zip_path):
139
  with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf: [zipf.write(os.path.join(root, file), os.path.relpath(os.path.join(root, file), os.path.dirname(directory_path))) for root, _, files in os.walk(directory_path) for file in files] # 🎁 Zip directory: Packing files faster than Santa on Christmas Eve!