A suite of CLI tools and Python library interfacing with Learning Management Systems (LMSs).
Project description
LMS Tools
A suite of tools and a Python interface for interacting with different Learning Management Systems (LMSs).
This project is not affiliated with any LMS developer/provider.
Links:
Installation
The project (tools and API) can be installed from PyPi with:
pip install edq-lms-toolkit
Standard Python requirements are listed in pyproject.toml.
The project and Python dependencies can be installed from source with:
pip3 install .
Cloning
This repository includes submodules.
To fetch these submodules on clone, add the --recurse-submodules flag.
For example:
git clone --recurse-submodules git@github.com:edulinq/lms-toolkit.git
To fetch the submodules after cloning, you can use:
git submodule update --init --recursive
Usage Notes
Object Queries
LMS's typically require that you refer to objects using their specified identifier. Because this may be difficult, the LMS Toolkit provides a way for users to instead refer to object by other identifying fields. Fields with this behavior are referred to as "queries". Unless specified, all inputs into the CLI can be assumed to be queries.
A query can be the LMS identifier, another identifying field, or a combination of the two (referred to as a "label"). The allowed identifying fields varies depending on the object you are referring to, but is generally straightforward. For example, a user can also be identified by their email or full name, while an assignment can be identified by its full name. Labels combine the identifying field with the LMS id, and are most commonly used by the LMS Toolkit when outputting information. For example, a user may be identified by any of the following:
| Query Type | Query |
|---|---|
sslug@test.edulinq.org |
|
| Name | Sammy Slug |
| ID | 123 |
| Label (Email) | sslug@test.edulinq.org (123) |
| Label (Name) | Sammy Slug (123) |
Output Formats
Many commands can output data in three different formats:
- Text (
--format text) -- A human-readable format (usually the default). - Table (
--format table) -- A tab-separated table. - JSON (
--format json) -- A JSON object/list.
Retrieval Operations
When retrieving data from the LMS, this project tends to use two different types of operations:
- list -- List out all the available entries, e.g., list all the users in a course.
- get -- Get a collection of entries by query, e.g., get several users by their email.
CLI Tools
All CLI tools can be invoked with -h / --help to see the full usage and all options.
List Course Users
Course users can be listed using the lms.cli.courses.users.list tool.
For example:
python3 -m lms.cli.courses.users.list
Get Course Users
To get information about course users, use the lms.cli.courses.users.get tool.
For example:
python3 -m lms.cli.courses.users.get sslug@test.edulinq.org
Any number of user queries may be specified.
List Assignments
Course assignments can be listed using the lms.cli.courses.assignments.list tool.
For example:
python3 -m lms.cli.courses.assignments.list
Get Assignments
To get information about course assignments, use the lms.cli.courses.assignments.get tool.
For example:
python3 -m lms.cli.courses.assignments.get 'Homework 1'
Any number of assignment queries may be specified.
LMS Coverage
The LMS Toolkit is constantly expanding its support with hopes for supporting all major LMSs.
Legend:
+-- Supported--- Not Yet Supportedx-- Support Impossible (See Notes)
| Feature | Canvas | Moodle |
|---|---|---|
| lms.cli.courses.get | + |
- |
| lms.cli.courses.list | + |
- |
| lms.cli.courses.assignments.get | + |
- |
| lms.cli.courses.assignments.list | + |
- |
| lms.cli.courses.assignments.scores.get | + |
- |
| lms.cli.courses.assignments.scores.list | + |
- |
| lms.cli.courses.users.get | + |
- |
| lms.cli.courses.users.list | + |
- |
| lms.cli.courses.users.scores.get | + |
- |
| lms.cli.courses.users.scores.list | + |
- |
| lms.cli.server.identify | + |
+ |
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 edq_lms_toolkit-1.0.6.tar.gz.
File metadata
- Download URL: edq_lms_toolkit-1.0.6.tar.gz
- Upload date:
- Size: 76.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f436bfc3a4d36123b8bd3ca02fc3d45b26fcff6ddd22080ad7526a982e0e5f4e
|
|
| MD5 |
b541101ab8d763419bf744df8190f810
|
|
| BLAKE2b-256 |
f68b728b87776790742f2d5baa6e6b4e283f85b84b798ceba61ab3c167bde51f
|
File details
Details for the file edq_lms_toolkit-1.0.6-py3-none-any.whl.
File metadata
- Download URL: edq_lms_toolkit-1.0.6-py3-none-any.whl
- Upload date:
- Size: 119.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74e75a885f04ca2ef457cbbfabc883e92f1c2c727cadc399af2ab2a41411ca8f
|
|
| MD5 |
45df420d75372de764d79b95a3799ae3
|
|
| BLAKE2b-256 |
ab8a7f2a2afae9ce5c4ed512033d3a300d250f7c4c326dca85578b0ba88de864
|