webicon 0.2.0

Favicon and apple-touch-icon scraper for Rust
docs.rs failed to build webicon-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: webicon-0.3.4

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.