Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Microsoft Azure基础知识Pdf版本_Azure - Fatal编程技术网

Microsoft Azure基础知识Pdf版本

Microsoft Azure基础知识Pdf版本,azure,Azure,有没有一种方法可以让我得到这个的pdf版本,而不是在网站上一页一页地浏览你可以自动将爬虫+html转换成pdf pip install weasyprint # No longer supports Python 2.x. python >>> pdf = weasyprint.HTML('http://www.google.com').write_pdf() >>> len(pdf) 92059 >>> file('google.pdf

有没有一种方法可以让我得到这个的pdf版本,而不是在网站上一页一页地浏览

你可以自动将爬虫+html转换成pdf

pip install weasyprint  # No longer supports Python 2.x.

python
>>> pdf = weasyprint.HTML('http://www.google.com').write_pdf()
>>> len(pdf)
92059
>>> file('google.pdf', 'wb').write(pdf)
资料来源: