Automatic logging of student code development and test runs
Project description
learnlog
A Python package that automatically logs code development and program runs.
By adding import learnlog as the first import in a Python file, every
program run is recorded transparently: source code changes, command-line
arguments, standard input/output/error, and unhandled exceptions. The data is
stored in a hidden local Git repository.
Use cases
-
Sharing live-coding sessions. A teacher adds
import learnlogto demonstration scripts during a lecture or tutorial. After the session the teacher pushes the log to a remote repository:learnlog set-remote git@gitlab.kth.se:dbosk/lecture01.git learnlog push
Students clone the log and replay it step by step:
learnlog clone git@gitlab.kth.se:dbosk/lecture01.git learnlog play
Alternatively, when a shared Git remote is not available, the teacher can export the log as a portable bundle file:
learnlog export -o lecture01.bundle
The teacher distributes the file (e.g. via a course page) and students replay it directly:
learnlog play lecture01.bundle
-
Studying how students code. A researcher creates an empty Git repository for each student. Each student adds
import learnlogto their programs and pushes the log:learnlog set-remote git@gitlab.kth.se:dbosk/alice-log.git learnlog push
The researcher then clones each student's repository to analyse the development data:
learnlog clone git@gitlab.kth.se:dbosk/alice-log.git learnlog play learnlog analyse X-Tag=lab1 X-Tag=lab2
The
analysecommand generates LaTeX reports of edit--run cycles. The optional positional arguments filter events byColumn=Regexboundaries—here, only events between tagslab1andlab2are included.Alternatively, the student can export the log as a bundle and submit it through the course platform:
learnlog export -o alice-log.bundle
The researcher then replays it directly:
learnlog play alice-log.bundle
This gives a complete timeline of how students develop and debug their code — for research purposes or to help students refine their debugging techniques.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file learnlog-0.18.tar.gz.
File metadata
- Download URL: learnlog-0.18.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.4 CPython/3.13.7 Linux/6.17.0-22-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c303f3a614cf8adb12b4b29d4a7e765ee355c41df867088eb77918ae7c9a83f1
|
|
| MD5 |
e99c9c44f5fe79e1658995459f4ffba9
|
|
| BLAKE2b-256 |
fec0be7fed6067de5cb1dd5e4492b4a20575c32597f1cc721d7e128d7bcabc34
|
File details
Details for the file learnlog-0.18-py3-none-any.whl.
File metadata
- Download URL: learnlog-0.18-py3-none-any.whl
- Upload date:
- Size: 36.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.4 CPython/3.13.7 Linux/6.17.0-22-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d551ac2fdb5f4b62644fd34c9552b4a49afced74090547cf8e0509a404ae6962
|
|
| MD5 |
ce451506182ab436ba0c8e1fd8fa7641
|
|
| BLAKE2b-256 |
13fa3346a5c0e149a5a540cb378b0823b3699e7f53f0b2a343e760315e5d568e
|