Go to file
2021-04-17 15:38:18 +02:00
.github/workflows CI: upload artifacts 2021-01-24 18:24:10 +01:00
src Keyring authentication + username/password options 2021-04-17 15:38:18 +02:00
.gitignore Initial commit 2020-04-21 22:41:28 +02:00
build.sh build script 2021-04-14 17:05:07 +02:00
Cargo.lock Keyring authentication + username/password options 2021-04-17 15:38:18 +02:00
Cargo.toml Keyring authentication + username/password options 2021-04-17 15:38:18 +02:00
README.md Correct statement in readme 2021-04-14 17:24:39 +02:00

KIT-ILIAS-downloader

Download content from ILIAS. That includes:

  • files
  • exercise sheets and solutions
  • Opencast lectures
  • forum posts

Installation

Go to the releases and get the executable for your operating system. Or compile from source:

$ git clone https://github.com/FliegendeWurst/KIT-ILIAS-downloader
$ cd KIT-ILIAS-downloader
$ cargo install --path .

Usage

Use -o <directory> to specify the download directory:

$ KIT-ILIAS-downloader -o ./ILIAS

Only content on your personal desktop will be downloaded.

$ KIT-ILIAS-downloader --help
KIT-ILIAS-downloader 0.2.14

USAGE:
    KIT-ILIAS-downloader [FLAGS] [OPTIONS] --output <output>

FLAGS:
        --content-tree    Use content tree (slow but thorough)
    -f                    Re-download already present files
    -t, --forum           Download forum content
    -h, --help            Prints help information
    -n, --no-videos       Do not download Opencast videos
    -s, --skip-files      Do not download files
    -V, --version         Prints version information
    -v                    Verbose logging (print objects downloaded)

OPTIONS:
    -j, --jobs <jobs>        Parallel download jobs [default: 1]
    -o, --output <output>    Output directory
    -p, --proxy <proxy>      Proxy, e.g. socks5h://127.0.0.1:1080 [default: ""]

.iliasignore

.gitignore syntax can be used in a .iliasignore file: (located in the download folder)

# example 1: only download a single course
/*/
!/InsertCourseHere/
# example 2: only download files related to one tutorial
/Course/Tutorien/*/
!/Course/Tutorien/Tut* 3/

.iliaslogin

If you don't want to enter your credentials every time you run the program, you can instead save your username and password in a file (.iliaslogin):

username
password

Similar programs