[Vuejs]-Make a get request to download a pdf from url-to-pdf-api

0👍

You can use the following code to store the text in a file like so:

f = open("yourFileName.txt", "a")
f.write("Insert text here")
f.close()

And i recommend you to use fpdf to save and edit pdf files

Leave a comment