From fbee1cff1f12e48c06af97e7f8c54f663930aaf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marike=20Vo=C3=9Fbeck?= Date: Wed, 4 Mar 2026 12:47:41 +0100 Subject: [PATCH] Test to simply generate a PDF --- austritt/pdf_test.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 austritt/pdf_test.py diff --git a/austritt/pdf_test.py b/austritt/pdf_test.py new file mode 100644 index 0000000..213ad1f --- /dev/null +++ b/austritt/pdf_test.py @@ -0,0 +1,7 @@ +from reportlab.pdfgen import canvas +def hello(c): + c.drawString(100,100,"Hello World") +c = canvas.Canvas("hello.pdf") +hello(c) +c.showPage() +c.save() \ No newline at end of file