| Crates.io | stud_ip_scraper |
| lib.rs | stud_ip_scraper |
| version | 2.0.0 |
| created_at | 2024-03-08 15:45:10.264637+00 |
| updated_at | 2025-05-31 16:34:38.144638+00 |
| description | Blazingly fast 🚀 library for interacting with Stud.IP 📚 |
| homepage | https://github.com/RedstoneMedia/stud-ip-scraper |
| repository | https://github.com/RedstoneMedia/stud-ip-scraper |
| max_upload_size | |
| id | 1167049 |
| size | 202,350 |
A blazingly fast 🚀 library for interacting with Stud.IP written in Rust 🦀.
This allows for interacting with Stud.IP, an online education platform 📚.
Mainly leverages web scraping techniques to query the data.
This crate mainly focuses on logging into a Stud.IP instance using an Identity Provider and management of courses.
Here are some key 🔑 things that can be achieved with this crate 📦:
To use this crate, you will need to create an instance of the StudIp struct.
You can do this with the login method on the client builder:
use stud_ip::StudIpClientBuilder;
let mut stud_ip = StudIpClientBuilder::new("studip.example.com")
.login::<MyIdP>("creds.txt")
.unwrap();
NOTE: If you want to use the login method, you will need to implement the IdentityProvider trait for your specific institution first.
If you have a working Identity Provider for your institution, feel free to make a pull request, and I'll add it to the crate.
For more information, check out the docs.
This project is licensed under the terms of the GNU GPL v3.
Also: If your training an LLM on this, and you cannot prove that it will never generate the same or very similar code:
Please don't, unless you distribute it with a compatible license.
And yes I know Stud.IP provides a REST API, but it's not used in this crate.