#web-scraping #stud-ip

stud_ip_scraper

Blazingly fast 🚀 library for interacting with Stud.IP 📚

3 unstable releases

0.2.0 Mar 11, 2024
0.1.1 Mar 8, 2024
0.1.0 Mar 8, 2024

#140 in HTTP client

Download history 443/week @ 2024-03-06 44/week @ 2024-03-13 1/week @ 2024-03-20 21/week @ 2024-03-27 20/week @ 2024-04-03

108 downloads per month

GPL-3.0 license

73KB
1.5K SLoC

Stud.IP Scraper

Crates.io License Crates.io Version

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.

Features

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 📦:

  • Querying the user's courses 🔎📚
  • Extendable management of course modules 💹🛠
  • Querying files and folders of a course 🔎📁
  • Downloading files 📥💨
  • Querying the members of a course (students, lecturers, tutors) 🔎👨‍🏫
  • Querying the groups of a course 🔎👥
  • Joining and leaving course groups 🚪

Usage

To use this crate, you will need to create an instance of the StudIp struct. You can do this with the login method:

use stud_ip::StudIp;

let stud_ip = StudIp::login<MyIdP>("credentials.txt", "studip.example.com").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.

License

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.

Dependencies

~11–27MB
~404K SLoC