Skip to content

Commit eb6ef79

Browse files
authored
Merge pull request #1017 from honzajavorek/honzajavorek/rename-chapters
fix: rename several chapters to improve orientation and fix a few small issues
2 parents 2bfffa0 + dbbda9f commit eb6ef79

File tree

8 files changed

+8
-20
lines changed

8 files changed

+8
-20
lines changed

sources/academy/tutorials/python/process_data_using_python.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
22
title: Process scraped data with Python
33
description: Learn how to process the resulting data of a web scraper in Python using the Pandas library, and how to visualize the processed data using Matplotlib.
4-
sidebar_position: 2
4+
sidebar_position: 2 # should be after scrape_data_python.md
55
slug: /python/process-data-using-python
66
---
77

8-
<!-- Beware when changing the menu weight - this article should always be after the 'Scrape data using Python' article -->
9-
108
# How to process data in Python using Pandas
119

1210
**Learn how to process the resulting data of a web scraper in Python using the Pandas library, and how to visualize the processed data using Matplotlib.**

sources/academy/webscraping/advanced_web_scraping/scraping_paginated_sites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Scraping paginated sites
2+
title: Overcoming pagination limits
33
description: Learn how to extract all of a website's listings even if they limit the number of results pages. See code examples for setting up your scraper.
44
sidebar_position: 1
55
slug: /advanced-web-scraping/scraping-paginated-sites

sources/academy/webscraping/web_scraping_for_beginners/challenge/scraping_amazon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ slug: /web-scraping-for-beginners/challenge/scraping-amazon
77

88
# Scraping Amazon
99

10-
**Before you build your first web scraper with Crawlee, it is important to understand the concept of modularity in programming.**
10+
**Build your first web scraper with Crawlee. Let's extract product information from Amazon to give you an idea of what real-world scraping looks like.**
1111

1212
---
1313

sources/academy/webscraping/web_scraping_for_beginners/data_extraction/browser_devtools.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
2-
title: Browser DevTools - I
2+
title: Starting with browser DevTools
33
description: Learn about browser DevTools, a valuable tool in the world of web scraping, and how you can use them to extract data from a website.
44
sidebar_position: 1
55
slug: /web-scraping-for-beginners/data-extraction/browser-devtools
66
---
77

8-
# Browser DevTools {#devtools}
9-
108
**Learn about browser DevTools, a valuable tool in the world of web scraping, and how you can use them to extract data from a website.**
119

1210
---

sources/academy/webscraping/web_scraping_for_beginners/data_extraction/devtools_continued.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
2-
title: Browser DevTools - III
2+
title: Extracting data with DevTools
33
description: Continue learning how to extract data from a website using browser DevTools, CSS selectors, and JavaScript via the DevTools console.
44
sidebar_position: 3
55
slug: /web-scraping-for-beginners/data-extraction/devtools-continued
66
---
77

8-
# Finish with DevTools {#finish-devtools}
9-
108
**Continue learning how to extract data from a website using browser DevTools, CSS selectors, and JavaScript via the DevTools console.**
119

1210
---

sources/academy/webscraping/web_scraping_for_beginners/data_extraction/node_continued.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
2-
title: Node.js scraper - II
2+
title: Extracting data with Node.js
33
description: Continue learning how to create a web scraper with Node.js and Cheerio. Learn how to parse HTML and print the results of the data your scraper has collected.
44
sidebar_position: 7
55
slug: /web-scraping-for-beginners/data-extraction/node-continued
66
---
77

8-
# Finish Node.js scraper {#finish-scraper}
9-
108
**Continue learning how to create a web scraper with Node.js and Cheerio. Learn how to parse HTML and print the results of the data your scraper has collected.**
119

1210
---

sources/academy/webscraping/web_scraping_for_beginners/data_extraction/node_js_scraper.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
2-
title: Node.js scraper - I
2+
title: Scraping with Node.js
33
description: Learn how to use JavaScript and Node.js to create a web scraper, plus take advantage of the Cheerio and Got-scraping libraries to make your job easier.
44
sidebar_position: 6
55
slug: /web-scraping-for-beginners/data-extraction/node-js-scraper
66
---
77

8-
# First Node.js scraper {#first-scraper}
9-
108
**Learn how to use JavaScript and Node.js to create a web scraper, plus take advantage of the Cheerio and Got-scraping libraries to make your job easier.**
119

1210
---

sources/academy/webscraping/web_scraping_for_beginners/data_extraction/using_devtools.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
2-
title: Browser DevTools - II
2+
title: Finding elements with DevTools
33
description: Learn how to use browser DevTools, CSS selectors, and JavaScript via the DevTools console to extract data from a website.
44
sidebar_position: 2
55
slug: /web-scraping-for-beginners/data-extraction/using-devtools
66
---
77

8-
# Data extraction with DevTools {#devtools-data-extraction}
9-
108
**Learn how to use browser DevTools, CSS selectors, and JavaScript via the DevTools console to extract data from a website.**
119

1210
---

0 commit comments

Comments
 (0)