Skip to main content

Python parser and validator for the LearnSpec suite (LearnMD, QuizMD, FlashMD, TrackMD, DiagramMD, MediaMD, GlossaryMD, BadgeMD, CertMD, NuggetMD)

Project description

pylearnspec

Python parser and validator for the LearnSpec suite of open standards:

Format API
LearnMD — instructional content parse_learn, validate_learn
QuizMD — assessments parse_quiz, validate_quiz
FlashMD — flashcards parse_flash, validate_flash
NuggetMD — micro-learning nuggets parse_nugget, validate_nugget
TrackMD — learning paths parse_track, validate_track
DiagramMD — diagrams parse_diagram, validate_diagram
MediaMD — media catalogues parse_media, validate_media
GlossaryMD — glossaries parse_glossary, validate_glossary
BadgeMD — micro-credentials parse_badge, validate_badge
CertMD — macro-credentials parse_cert, validate_cert

Install

pip install pylearnspec

Quick start

Parse a QuizMD file

from pylearnspec import parse_quiz

with open("my-quiz.quiz.md") as f:
    quiz = parse_quiz(f.read())

print(quiz.title)
print(f"{len(quiz.questions)} questions")

for q in quiz.questions:
    print(f"  Q{q.number} ({q.q_type}): {q.title}")

Parse a LearnMD file

from pylearnspec import parse_learn

with open("my-lesson.learn.md") as f:
    lesson = parse_learn(f.read())

print(lesson.title)
for section in lesson.sections:
    print(f"  {'#' * section.depth} {section.title}")

Validate

from pylearnspec import validate_quiz, validate_learn

# Lenient mode (default)
diagnostics = validate_quiz(content)

# Strict mode (for CI)
diagnostics = validate_quiz(content, strict=True)

for d in diagnostics:
    print(f"[{d.level}] {d.message}")

JSON output

Both Quiz and Lesson objects have a .to_dict() method for JSON serialization:

import json
from pylearnspec import parse_quiz

quiz = parse_quiz(content)
print(json.dumps(quiz.to_dict(), indent=2))

Supported features

QuizMD

  • Frontmatter (Level 1) and per-question quiz blocks (Level 2)
  • Question types: MCQ, multi-select, true/false, open answer, match, order
  • Per-choice and global feedback ([!correct], [!incorrect])
  • !import directives
  • Validation (lenient and strict modes)

LearnMD

  • Frontmatter metadata (lang, estimated_time, tags)
  • Section hierarchy (## modules, ### lessons)
  • Special fenced blocks: summary, example, note, tip, warning, quiz, etc.
  • GFM callout detection (> [!tip], > [!warning], etc.)
  • !import directives (.learn.md and .quiz.md)
  • Validation (lenient and strict modes)

LearnSpec suite (v0.2)

Every format follows the same shape:

  • YAML frontmatter with the universal fields (lang required, license, spec_version, created, updated)
  • Cross-format directives !import, !ref, !checkpoint (when applicable) — see pylearnspec.common.directives
  • parse_<format>(content) returns a typed dataclass with a .to_dict() method
  • validate_<format>(content, strict=False) returns a list of Diagnostic(level, message)

Development

pip install -e ".[dev]"
pytest

License

MIT

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

pylearnspec-0.5.0.tar.gz (38.9 kB view details)

Uploaded Source

Built Distribution

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

pylearnspec-0.5.0-py3-none-any.whl (46.7 kB view details)

Uploaded Python 3

File details

Details for the file pylearnspec-0.5.0.tar.gz.

File metadata

  • Download URL: pylearnspec-0.5.0.tar.gz
  • Upload date:
  • Size: 38.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pylearnspec-0.5.0.tar.gz
Algorithm Hash digest
SHA256 f10377ce1aee37e5e686f926bef7120de29a0caa4eb5c72601d8d23435820e0a
MD5 cc1b525562a69cbfce2ac2db9091dc63
BLAKE2b-256 869d847ab7ac988849a1679b812ba4978dea244a08e8c28f3c859c8aa2c68874

See more details on using hashes here.

File details

Details for the file pylearnspec-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: pylearnspec-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 46.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pylearnspec-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6aa8f82b082eca183e878e35b370037ecd88c8ece2952c18cedb515bba8ad66d
MD5 f466a985a1423136f4334d66446d2d9a
BLAKE2b-256 b42217522e8ac0ec9f46b2e6ba52226de4f009ebf3789241a6c5b38966c30a3a

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