Skip to content

Instantly share code, notes, and snippets.

@captivus
Last active April 26, 2020 17:31
Show Gist options
  • Save captivus/2e3be3e0c0afd00bb8d40b8e239e8851 to your computer and use it in GitHub Desktop.
Save captivus/2e3be3e0c0afd00bb8d40b8e239e8851 to your computer and use it in GitHub Desktop.
Load BeautifulSoup and parse the Audible Matchmaker page ...
import requests
from bs4 import BeautifulSoup
# open Audible Matchmaker page locally
# (see accompanying Jupyter notebook for details)
infile = open(file='audible_matchmaker.html', mode='r')
# parse the page with BeautifulSoup
soup = BeautifulSoup(markup=infile, features='html.parser')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment