webicon 0.3.4

Favicon and apple-touch-icon scraper for Rust
Documentation

rust-webicon

Build Status

A library for scraping a website's icon.

Usage:

extern crate webicon;
use webicon::IconScraper;

let mut scraper = IconScraper::from_http("http://twitter.com").unwrap();
let icons = scraper.fetch_icons();

icons.at_least(128, 128);  // Return icon that is at least 128x128 pixels large
icons.largest();  // Just return the largest one.

Read more in the docs.

License

Licensed under the MIT, see LICENSE.