github-stats 0.1.0

Gets stats from Github
Documentation

github-stats

GitHub Release Date

A tool to get stats from Github

use github_stats::Repo;

let repo = Repo::new("rust-lang", "rust");

match repo {
    Ok(repo) => {/* Do some stuff */},
    Err(e) => eprintln!(":("),
}