Skip to content

Commit 323c3c6

Browse files
committed
fix: update downloading to be about JS
1 parent 0b013d4 commit 323c3c6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

sources/academy/webscraping/scraping_basics_javascript2/05_parsing_html.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,20 @@ $ pip install beautifulsoup4
3838
Successfully installed beautifulsoup4-4.0.0 soupsieve-0.0
3939
```
4040

41+
<!--
42+
:::tip Installing packages
43+
44+
Being comfortable around Python project setup and installing packages is a prerequisite of this course, but if you wouldn't say no to a recap, we recommend the [Installing Packages](https://packaging.python.org/en/latest/tutorials/installing-packages/) tutorial from the official Python Packaging User Guide.
45+
46+
:::
47+
48+
:::info Troubleshooting
49+
50+
If you see other errors or for any other reason cannot run the code above, it means that your environment isn't set up correctly. We're sorry, but figuring out the issue is out of scope of this course.
51+
52+
:::
53+
-->
54+
4155
Now let's use it for parsing the HTML. The `BeautifulSoup` object allows us to work with the HTML elements in a structured way. As a demonstration, we'll first get the `<h1>` element, which represents the main heading of the page.
4256

4357
![Element of the main heading](./images/h1.png)

0 commit comments

Comments
 (0)