Instantly share code, notes, and snippets.
from bs4 import BeautifulSoup import requests
def get_html(url): r = requests.get(url) return r.text