Created
August 25, 2017 11:29
-
-
Save MainasuK/22a306a78ac7b5451c4ca400918c1788 to your computer and use it in GitHub Desktop.
Save apple document as PDF (Simple Version)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import pdfkit | |
from bs4 import BeautifulSoup | |
url = 'https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/Conceptual/SafariAppExtension_PG/index.html' | |
pdfkit.from_url(url, 'out.pdf') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment