Spaces:
Sleeping
Sleeping
Add Space README with config header
Browse files
README.md
CHANGED
|
@@ -1,13 +1,24 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 6.15.2
|
| 8 |
-
python_version: '3.13'
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: SCORM QA Validator
|
| 3 |
+
emoji: 📦
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
sdk: gradio
|
|
|
|
|
|
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
+
license: mit
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# SCORM QA Validator
|
| 13 |
+
|
| 14 |
+
SCORM packages fail **silently** — a missing launch file or a wrong schema version
|
| 15 |
+
doesn't throw an error, it just shows the learner a blank screen after upload. This
|
| 16 |
+
tool opens the package, parses `imsmanifest.xml`, and hands you a manual-QA-style
|
| 17 |
+
defect log (severity, location, recommended fix) *before* it ships to Docebo, Workday,
|
| 18 |
+
or Cornerstone.
|
| 19 |
+
|
| 20 |
+
Upload your own `.zip`, or click a built-in sample (clean + broken) to see it work.
|
| 21 |
+
This Space runs the actual package (`scorm_qa/`) — the same code covered by the
|
| 22 |
+
project's 6-case pytest suite.
|
| 23 |
+
|
| 24 |
+
**Source & full docs:** https://github.com/LaelaZorana/scorm-qa-validator
|