current working example

This commit is contained in:
Niklas Müller 2024-01-05 11:53:12 +01:00
parent 95661fb73e
commit f19c7861b0
14 changed files with 379 additions and 45 deletions

View file

@ -0,0 +1,9 @@
from pypdf import PdfReader, PdfWriter
import uuid
import os
class pdf_project_manager:
def __init__(self):
self.uuid = str(uuid.uuid4())
os.makedirs("/app/projects/" + self.uuid, exist_ok=True)