download pdf url python code example
Example 1: download pdf from url python
import urllib.request
pdf_path = ""
def download_file(download_url, filename):
response = urllib.request.urlopen(download_url)
file = open(filename + ".pdf", 'wb')
file.write(response.read())
file.close()
download_file(pdf_path, "Test")
Example 2: How to read PDF from link in Python]
input1 = PdfFileReader(file("http://example.com/a.pdf", "rb"))