标签: python pdf
像http://query.nytimes.com/mem/archive-free/pdf?res=9A00EEDE1431E13BBC4850DFBF66838A649FDE
我可以在chrome中打开它并下载为pdf文件。 我需要将其写入本地.pdf文件,但该URL不以.pdf结尾 如何将其写入本地文件?
答案 0 :(得分:1)
with open('output.pdf', 'wb') as outfile: outfile.write(data)