gleam_finder 0.2.7

A very small crate you can use to get gleam.io links.
Documentation
gleam_finder-0.2.7 has been yanked.

This crate contains tools you can use to get gleam giveaways links.

You can search google for every youtube video mentionning gleam.io in the last hour with google::search().
After you got this links to youtube, you can load the pages and parse the description to get gleam.io links with youtube::resolve().
You can parse a gleam.io page with the Giveaway struct.

Examples

use gleam_finder::*;

for page in 0..4 {
for link in google::search(page) {
println!("resolving {}", link);
for gleam_link in intermediary::resolve(&link) {
println!("gleam link found: {}", gleam_link);
}
}
}