如何将非pdf网址转换为.pdf文件?

时间:2013-04-01 05:39:55

标签: python pdf

http://query.nytimes.com/mem/archive-free/pdf?res=9A00EEDE1431E13BBC4850DFBF66838A649FDE

这样的东西

我可以在chrome中打开它并下载为pdf文件。 我需要将其写入本地.pdf文件,但该URL不以.pdf结尾 如何将其写入本地文件?

1 个答案:

答案 0 :(得分:1)

with open('output.pdf', 'wb') as outfile:
     outfile.write(data)