Skip to content

Commit 672b81f

Browse files
committed
style: better heading
1 parent a2dd1b4 commit 672b81f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_python/09_getting_links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ In the code above we've also already added the URL to the dictionary returned by
237237

238238
Hmm, but that isn't what we wanted! Where is the beginning of each URL? It turns out the HTML contains so called relative links.
239239

240-
## Processing relative links
240+
## Turning relative links into absolute
241241

242242
Browsers reading the HTML know the base address and automatically resolve such links, but we'll have to do this manually. Function [`urljoin`](https://docs.python.org/3/library/urllib.parse.html#urllib.parse.urljoin) from the Python's standard library will help us. Let's add it to our imports first:
243243

0 commit comments

Comments
 (0)