Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让我获得这个https://docs.microsoft.com/en-us/learn/paths/azure-fundamentals/的 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)
来源:https ://stackoverflow.com/a/34438445/1384539