I have a PDF form that needs to be filled out a bunch of times (it\'s a timesheet to be exact). Now since I don\'t want to do this by hand, I was looking for a way to fill t
Replace Original File
os.system('pdftk "original.pdf" fill_form "data.fdf" output "output.pdf"') os.remove("data.fdf") os.remove("original.pdf") os.rename("output.pdf","original.pdf")