Skip to content

Commit

Permalink
Update in-depth-guide-html-scraping.md
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Duffett <46545313+mlduff@users.noreply.github.com>
  • Loading branch information
jknndy and mlduff authored Jun 17, 2024
1 parent e1b3ba6 commit 2da80b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/in-depth-guide-html-scraping.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# In-Depth Guide: HTML Scraping

The preferred method of scraping recipe information from a web page is to use the schema.org Recipe data. This is a machine-readable, structured format intended to provide a standardized method of extracting information. However, while most recipe websites use the schema.org Recipe format, not all websites do, and for those websites that do, it does not always include all the information we are looking for. In these cases, HTML scraping is used to extract the information from the HTML markup.
The preferred method of scraping recipe information from a web page is to use the [schema.org Recipe data](https://schema.org/Recipe). This is a machine-readable, structured format intended to provide a standardized method of extracting information. However, while most recipe websites use the schema.org Recipe format, not all websites do, and for those websites that do, it does not always include all the information we are looking for. In these cases, HTML scraping is used to extract the information from the HTML markup.

## `soup`

Expand Down

0 comments on commit 2da80b9

Please sign in to comment.