From 996ba3f65c34e3f5847c08688870a6682f67a849 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Kir=C3=A1ly?= Date: Wed, 21 Dec 2022 12:29:12 +0100 Subject: [PATCH] Adding a space in ch. 6.2. Scraping Web Pages... --- 01_intro/01_06-02_html.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_intro/01_06-02_html.ipynb b/01_intro/01_06-02_html.ipynb index 777b99d3..c5be6370 100644 --- a/01_intro/01_06-02_html.ipynb +++ b/01_intro/01_06-02_html.ipynb @@ -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." ] }, {