Last active
April 26, 2020 17:31
-
-
Save captivus/2e3be3e0c0afd00bb8d40b8e239e8851 to your computer and use it in GitHub Desktop.
Load BeautifulSoup and parse the Audible Matchmaker page ...
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 | |
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