(it’s very close to success , i can feel it)
python creating different types of files
this article is a draft, and i will make it more and more useful
Creating PDF Documents With Python
because i need pdf file to test our resource manager system
https://www.geeksforgeeks.org/creating-pdf-documents-with-python/
pip install
image
Writing text on image
create png image with python
you can use pillow to create image file
and draw text on image
pip install Pillow
Create images with Python PIL and Pillow and write text on them
img = Image.new('RGB', (60, 30), color = 'red')
d1 = ImageDraw.Draw(img)
d1.text((65, 10), "Sample text", fill =(255, 0, 0)
img.save
word?
A couple ways you can create Word documents using Python