Skip to content

Commit 36262de

Browse files
committed
feat: small bits
1 parent 672b81f commit 36262de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ Now we'll pass the base URL to the function in the main body of our program:
271271
```py
272272
listing_url = "https://warehouse-theme-metal.myshopify.com/collections/sales"
273273
soup = download(listing_url)
274+
# highlight-next-line
274275
data = [parse_product(product, listing_url) for product in soup.select(".product-item")]
275276
```
276277

@@ -295,7 +296,7 @@ When we run the scraper now, we should see full URLs in our exports:
295296
]
296297
```
297298

298-
Tada! We managed to get links to the product pages. In the next lesson we'll crawl these URLs so that we can have more details about the products in our dataset.
299+
Ta-da! We managed to get links leading to the product pages. In the next lesson we'll crawl these URLs so that we can have more details about the products in our dataset.
299300

300301
---
301302

0 commit comments

Comments
 (0)