Skip to content

Instantly share code, notes, and snippets.

@MainasuK
Created August 25, 2017 11:29
Show Gist options
  • Save MainasuK/22a306a78ac7b5451c4ca400918c1788 to your computer and use it in GitHub Desktop.
Save MainasuK/22a306a78ac7b5451c4ca400918c1788 to your computer and use it in GitHub Desktop.
Save apple document as PDF (Simple Version)
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