A client for interacting with the Ed LMS
Project description
ed-api-client
A Python client for the Ed LMS API, with utilities for analysing student workspace activity.
Installation
pip install ed-api-client
Quick start
from ed_api_client import EdClient
client = EdClient(token="your-api-token")
# Retrieve all students in a course
users = client.get_users(course_id=12345, role="student")
# Retrieve the module/lesson structure
modules = client.get_module_structure(course_id=12345)
for module in modules:
for lesson in module.lessons:
print(lesson.title)
# Fetch and analyse a student's workspace activity
log = client.get_workspace_log(workspace_id="abc123")
files = client.get_scaffold_files(challenge_id=99)
summary = WorkspaceSummary.from_log(files, log)
print(summary.total_active_time)
for file_id, file in summary.file_summaries.items():
print(file.path, file.pasted_proportion, file.cursor_entropy)
Full API reference: https://dmilne.gitlab.io/ed-api-client
Development
Prerequisites
- Python 3.10+
- Poetry
Install Poetry via Homebrew:
brew install poetry
Setup
Clone the repository and install all dependencies (including dev dependencies):
git clone https://gitlab.com/dmilne/ed-api-client.git
cd ed-api-client
poetry install --with dev
Running tests
poetry run pytest tests/ -v
Tests use the responses library to mock HTTP calls — no real Ed credentials are needed.
Viewing the docs locally
poetry run mkdocs serve
Then open http://localhost:8000.
Publishing a new version
-
Bump the version:
poetry version patch # or: minor, major
-
Configure your PyPI token (first time only):
poetry config pypi-token.pypi your-token-here
Get a token at https://pypi.org/manage/account/token/.
-
Build and publish:
poetry publish --build
CI/CD
The GitLab pipeline (.gitlab-ci.yml) runs on every push:
- test — runs
pytestagainst Python 3.11 - pages (main branch only) — builds and deploys the MkDocs site to GitLab Pages at https://dmilne.gitlab.io/ed-api-client
License
MIT
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 ed_api_client-0.1.9.tar.gz.
File metadata
- Download URL: ed_api_client-0.1.9.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.14.4 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b7f6df5b5f4d485c3104be03df9c20aa33e4ad402405a61d16ec766b454e03b
|
|
| MD5 |
96f1450b3c9baf2579984d8b2da66a4f
|
|
| BLAKE2b-256 |
55ed9056c72228192ae444c38375d2c52931f2db84d0833a4b6c0943702dc0e2
|
File details
Details for the file ed_api_client-0.1.9-py3-none-any.whl.
File metadata
- Download URL: ed_api_client-0.1.9-py3-none-any.whl
- Upload date:
- Size: 29.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.14.4 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd9d35088a31c846c7ce27027b83f35ee212be6c214fb117d9fda0d00266ed83
|
|
| MD5 |
3cf728d7e4113357e373a0ba72da706c
|
|
| BLAKE2b-256 |
3caf228c936917f5ede1cd54324c9fa29055f5368ce6225abfc0618b4c69eac2
|