Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adistrim/webrusher

Fetches HTML, parses it, and extracts data using a CSS selector. Example focuses on Rust by Example documentation, demonstrating menu title retrieval. Async functionality is powered by the Tokio runtime.
https://github.com/adistrim/webrusher

Last synced: 7 days ago
JSON representation

Fetches HTML, parses it, and extracts data using a CSS selector. Example focuses on Rust by Example documentation, demonstrating menu title retrieval. Async functionality is powered by the Tokio runtime.

Awesome Lists containing this project

README

        

# WebRusher
The program fetches HTML content from a specified URL, parses it, and extracts data based on a CSS selector. The example targets the Rust by Example documentation to showcase how to retrieve menu titles from the provided webpage. The code is asynchronous, utilizing the tokio runtime for handling asynchronous tasks.

### Dependencies
- reqwest = "0.11.23"
- scraper = "0.18.1"
- tokio = { version = "1", features = ["full"] }