Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 01_intro/01_06-02_html.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
"id": "585725ac-e316-45ad-b176-4da2dc26aa92",
"metadata": {},
"source": [
"With BeautifulSoup imported, we can use the `BeautifulSoup` class. This class allows us to parse HTML. As we will see throughout this chapter, you will rarely have HTML as a string within your Python script, but for now, since we are starting, let's try to parse the above `html` string by passing it to the BeautifulSoup class. It is Pythonic to name your BeautifulSoup variable `soup`. If you have a more complex script that is parsing soup objects from multiple websites, you may want to be more original in your naming conventions, but for our purposes,`soup` will serve us well."
"With BeautifulSoup imported, we can use the `BeautifulSoup` class. This class allows us to parse HTML. As we will see throughout this chapter, you will rarely have HTML as a string within your Python script, but for now, since we are starting, let's try to parse the above `html` string by passing it to the BeautifulSoup class. It is Pythonic to name your BeautifulSoup variable `soup`. If you have a more complex script that is parsing soup objects from multiple websites, you may want to be more original in your naming conventions, but for our purposes, `soup` will serve us well."
]
},
{
Expand Down