Skip to main content

Python wrapper and CLI for the LADOK3 REST API.

Project description

ladok3: Python wrapper for LADOK3 API

This package provides a wrapper for the LADOK3 API used by start.ladok.se. This makes it easy to automate reporting grades, compute statistics etc.

Installation

To install, run:

pip install ladok3
sudo cp $(find / -name ladok.bash) /etc/bash_completion.d
ladok login

If you run the second line above, you'll get tab completion for the ladok command when you use the bash shell.

The third command above is to log in, you only do this once.

An alternative to installing the package is to run the Docker image.

docker run -it dbosk/ladok3 /bin/bash

Or simply adapt your own image.

Usage

There are two ways to use the package: as a Python package or through the command-line tool ladok.

On the command line

Let's assume that we have a student with personnummer 123456-1234. Let's also assume that this student has taken a course with course code AB1234 and finished the module LAB1 on date 2021-03-15. Say also that the student's assignments were graded by the teacher and two TAs:

Then we can report this result like this:

ladok report 123456-1234 AB1234 LAB1 -d 2021-03-15 -f \
  "Daniel Bosk <dbosk@kth.se>" "Teaching Assistantsdotter <tad@kth.se>" \
  "Teaching Assistantsson <tas@kth.se>"

If we use Canvas for all results, we can even report all results for a course.

pip install canvaslms
canvaslms login
canvaslms results -c AB1234 -A LAB1 | ladok report -v

The canvaslms results command will export the results in CSV format, this will be piped to ladok report that can read it and report it in bulk.

Most likely you'll need to pass the CSV through sed to change the column containing the course identifier to just contain the course code. At KTH, the course code attribute in Canvas contains course code and the semester. So I have to sed away the semester part.

As a Python package

To use the package, it's just to import the package as usual.

import ladok3

credentials = {
  "username": "dbosk@ug.kth.se",
  "password": "password ..."
}

ls = ladok3.LadokSession("KTH Royal Institute of Technology",
                         vars=credentials)

student = ls.get_student("123456-1234")

course_participation = student.courses(code="AB1234")[0]
for result in course_participation.results():
  print(f"{course_participation.code} {result.component}: "
    f"{result.grade} ({result.date})")

component_result = course_participation.results(component="LAB1")[0]
component_result.set_grade("P", "2021-03-15")
component_result.finalize()

The simplest way, if you've already run ladok login, is to use the module-level session attribute:

import ladok3

student = ladok3.session.get_student("123456-1234")
# ...

Another way is to use the load_credentials function of the CLI.

import ladok3
import ladok3.cli

ls = ladok3.LadokSession(*ladok3.cli.load_credentials())

student = ls.get_student("123456-1234")
# ...

If you want to reuse a cached session (to avoid re-authenticating), use get_session:

import ladok3.cli

ls, credentials = ladok3.cli.get_session()

student = ls.get_student("123456-1234")
# ...

More documentation

There are more detailed usage examples in the details documentation that can be round with the releases and in the examples directory.

The examples

There are some examples that can be found in the examples directory:

  • example_LadokSession.py just shows how to establish a session.
  • example_Course.py shows course data related examples.
  • example_Student.py shows student data related examples.
  • canvas2ladok.py shows how to transfer grades from KTH Canvas to LADOK.
  • statsdata.py shows how to extract data for doing statistics for a course and the students' results.

We also have a few more examples described in the sections below.

canvas_ladok3_spreadsheet.py

Purpose: Use the data in a Canvas course room together with the data from Ladok3 to create a spreadsheet of students in the course and include their Canvas user_id, name, Ladok3 Uid, program_code, program name, etc.

Note that the course_id can be given as a numeric value or a string which will be matched against the courses in the user's dashboard cards. It will first match against course codes, then short name, then original names.

Input:

canvas_ladok3_spreadsheet.py canvas_course_id

Add the "-T" flag to run in the Ladok test environment.

Output: outputs a file ('users_programs-COURSE_ID.xlsx) containing a spreadsheet of the users information

canvas_ladok3_spreadsheet.py 12162

canvas_ladok3_spreadsheet.py -t 'II2202 HT20-1'

ladok3_course_instance_to_spreadsheet.py

Purpose: Use the data in Ladok3 together with the data from Canvas to create a spreadsheet of students in a course instance and include their Canvas user_id (or "not in Canvas" if they do not have a Canvas user_id), name, Ladok3 Uid, program_code, program name, etc.

Note that the course_id can be given as a numeric value or a string which will be matched against the courses in the user's dashboard cards. It will first match against course codes, then short name, then original names.

Input:

ladok3_course_instance_to_spreadsheet.py course_code course_instance

or

ladok3_course_instance_to_spreadsheet.py canvas_course_id

or

./ladok3_course_instance_to_spreadsheet.py course_code

Optionally include their personnumber with the flag -p or --personnumbers

Add the "-T" flag to run in the Ladok test environment.

Output: outputs a file ('users_programs-instance-COURSE_INSTANCE.xlsx) containing a spreadsheet of the users information

# for II2202 the P1 instance in 2019 the course instance is 50287
ladok3_course_instance_to_spreadsheet.py II2202 50287

or

# Canvas course_id for II2202 in P1 is 20979
ladok3_course_instance_to_spreadsheet.py 20979

or

# P1P2 is a nickname on a dashboard card for II2202 duing P1 and P2
./ladok3_course_instance_to_spreadsheet.py P1P2

canvas_students_missing_integration_ids.py

Purpose: Use the data in a Canvas course room to create a spreadsheet of students in the course who are missing an integration ID.

Input:

canvas_students_missing_integration_ids.py canvas_course_id

Output: outputs a file ('users_without_integration_ids-COURSE_ID.xlsx) containing a spreadsheet of the users information

cl_user_info.py

Purpose: Use the data in a Canvas course room together with the data from Ladok3 to find information about a user.

Input:

cl_user_info.py Canvas_user_id|KTHID|Ladok_id [course_id]

The course_id can be a Canvas course_id or if you have dashboard cards, you can specific a course code, a nickname, unique part of the short name or original course name.

Add the "-k" or '--kthid' flag to get the KTHID (i.e., the 'sis_user_id) you need to specify a course_id for a course (where this user is a teacher or student) on the command line.

Add the "-T" flag to run in the Ladok test environment.

If you know the Ladok_id, i.e., the integration_id - then you do not need to specify a course_id.

The program can also take an argument in the form https://canvas.kth.se/courses/course_id/users/user_id

  • this is the URL when you are on a user's page in a course.

Output:
      from Canvas: sortable name, user_id, and integration_id
         if you specified a course_id, you will also get KTHID and login_id
      from Ladok: pnr (personnumber) and [program_code, program_name, specialization/track code, admissions info]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ladok3-5.15.tar.gz (83.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ladok3-5.15-py3-none-any.whl (3.0 MB view details)

Uploaded Python 3

File details

Details for the file ladok3-5.15.tar.gz.

File metadata

  • Download URL: ladok3-5.15.tar.gz
  • Upload date:
  • Size: 83.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.13.7 Linux/6.17.0-19-generic

File hashes

Hashes for ladok3-5.15.tar.gz
Algorithm Hash digest
SHA256 7d25b95c5562decdac650044ab1e0b97d82d2cf213f90d092883dd91c520227e
MD5 a1166c551a999ac0f0cab71ae4578d81
BLAKE2b-256 11b157e4cda706732a8f30d5cc8c31e150b8a96ebe6624905c3ad515d754b2c8

See more details on using hashes here.

File details

Details for the file ladok3-5.15-py3-none-any.whl.

File metadata

  • Download URL: ladok3-5.15-py3-none-any.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.13.7 Linux/6.17.0-19-generic

File hashes

Hashes for ladok3-5.15-py3-none-any.whl
Algorithm Hash digest
SHA256 554b0532da147ef81b18ad59e384081deb35124788f6db5ada68bedcf6704b4b
MD5 718098c6074d8370f74e6a2204e51401
BLAKE2b-256 af1cc73a34bdd4ad4b6722a0555a445673c965f7563522f64d978c2dae451594

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page