简体   繁体   中英

Microsoft Azure Fundamentals Pdf version

Is there a way I can get a pdf version of this https://docs.microsoft.com/en-us/learn/paths/azure-fundamentals/ , instead of going page after page in the website

you can automate a crawler + html to 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)

source: https://stackoverflow.com/a/34438445/1384539

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM