timeback-core 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,6 @@
1
+ # ai
2
+ .claude
3
+
1
4
  # Python
2
5
  __pycache__/
3
6
  *.py[cod]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: timeback-core
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Unified Timeback client for all education APIs (OneRoster, Caliper, Edubridge, QTI, PowerPath, CLR, CASE, Webhooks)
5
5
  Project-URL: Homepage, https://developer.timeback.com
6
6
  Project-URL: Documentation, https://docs.timeback.com
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "timeback-core"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "Unified Timeback client for all education APIs (OneRoster, Caliper, Edubridge, QTI, PowerPath, CLR, CASE, Webhooks)"
5
5
  readme = { file = "README.md", content-type = "text/markdown" }
6
6
  requires-python = ">=3.12"
@@ -0,0 +1,42 @@
1
+ """
2
+ QTI XML parsing utilities, re-exported from ``timeback_qti.parse``.
3
+
4
+ Example:
5
+ ```python
6
+ from timeback_core.qti import parse_qti_xml, extract_prompt
7
+ ```
8
+ """
9
+
10
+ from timeback_qti.parse import (
11
+ ParsedQtiItem,
12
+ QtiChoice,
13
+ QtiInlineFeedback,
14
+ QtiInteractionAttributes,
15
+ QtiModalFeedback,
16
+ QtiResponseDeclaration,
17
+ extract_choices,
18
+ extract_correct_response,
19
+ extract_feedback,
20
+ extract_interaction_attributes,
21
+ extract_modal_feedback,
22
+ extract_prompt,
23
+ extract_response_declaration,
24
+ parse_qti_xml,
25
+ )
26
+
27
+ __all__ = [
28
+ "ParsedQtiItem",
29
+ "QtiChoice",
30
+ "QtiInlineFeedback",
31
+ "QtiInteractionAttributes",
32
+ "QtiModalFeedback",
33
+ "QtiResponseDeclaration",
34
+ "extract_choices",
35
+ "extract_correct_response",
36
+ "extract_feedback",
37
+ "extract_interaction_attributes",
38
+ "extract_modal_feedback",
39
+ "extract_prompt",
40
+ "extract_response_declaration",
41
+ "parse_qti_xml",
42
+ ]
File without changes
File without changes