Scraper example using bible.com as the source.

Steve Thielemann 9371e904d8 Working walker. Change to struct to clean it up. vor 11 Monaten
src 9371e904d8 Working walker. Change to struct to clean it up. vor 11 Monaten
.gitignore f6790cbbbc Making a single request to httpbin.org. vor 11 Monaten
Cargo.lock 507c90360f Added user agent updater. vor 11 Monaten
Cargo.toml 507c90360f Added user agent updater. vor 11 Monaten
README.md 736758e4bd Added extract --output for JSON output. vor 11 Monaten
fetch1.html 060db0ff68 Initial working parser for verses. vor 11 Monaten
initial.config 507c90360f Added user agent updater. vor 11 Monaten

README.md

Rust - Reqwest and Scraper example

This is an example web scraper project. It downloads and extracts the Bible from https://www.bible.com.

User-Agent

The program will update the user-agent string it uses via https://www.mozilla.org/en-US/firefox/releases/ because I can.

-a or --agent-update

Bible versions

  • ESV
  • NIV
  • YLT98
  • KJV
  • NASB2020
  • MKJV

-v NIV

Relative/absolute URLs

See relative_to_absolute(url: &str, href: &str) -> Result to properly handle those.

Using

  • Copy initial.config to app.config.
  • Make a bible directory.
  • Run the fetch command.
  • Run the extract command. Try the --output option.
  • Run the verse command.