current working example
This commit is contained in:
parent
95661fb73e
commit
f19c7861b0
14 changed files with 379 additions and 45 deletions
9
pdf_util/pdf_project_manager.py
Normal file
9
pdf_util/pdf_project_manager.py
Normal 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)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue