Crates.io | studentvue |
lib.rs | studentvue |
version | 0.1.0 |
source | src |
created_at | 2020-02-06 04:59:06.97588 |
updated_at | 2020-02-06 04:59:06.97588 |
description | StudentVue Rust API |
homepage | |
repository | https://github.com/13laze/StudentVue-rs/ |
max_upload_size | |
id | 205391 |
size | 80,611 |
An asynchronous Rust API to access various services offered by the StudentVUE App
// example usage
use studentvue::client::Client;
#[tokio::main]
async fn main() {
let client = Client::create("https://afsd.edupoint.com/", env!("SID"), env!("SPWD"));
let grades = client.get_grades(None)
.await
.expect("Could not retrieve grades!");
grades.gradebook.courses.course.iter().for_each(|x| {
println!("{}", x.class_name)
});
}
Docs: https://docs.rs/studentvue
MIT