Metadata-Version: 2.4
Name: json2qti
Version: 1.2.0
Summary: Convert simple JSON quizzes to QTI format for LMS import
Author-email: Jon Craton <jncraton@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# json2qti

[![PyPI version](https://badge.fury.io/py/json2qti.svg)](https://badge.fury.io/py/json2qti)
[![Lint](https://github.com/jncraton/json2qti/actions/workflows/lint.yml/badge.svg)](https://github.com/jncraton/json2qti/actions/workflows/lint.yml)
[![Test](https://github.com/jncraton/json2qti/actions/workflows/test.yml/badge.svg)](https://github.com/jncraton/json2qti/actions/workflows/test.yml)

**Instantly convert simple JSON files into QTI import packages for your LMS.**

`json2qti` is a lightweight, zero-dependency tool designed to bridge the gap between AI-generated content and Learning Management Systems (Canvas, Blackboard, Moodle, Brightspace, etc.).

## 🚀 Why json2qti?

- **LLM Optimized:** The input JSON format is designed to be extremely token-efficient, making it perfect for generating quizzes with ChatGPT, Claude, or other LLMs.
- **Zero Dependencies:** Runs entirely on the Python standard library. No complex environment setup required.
- **Universal Compatibility:** Generates standard QTI v1.2 packages compatible with major LMS platforms.

## 📄 JSON Format

The input format is minimal by design.
1.  **Quiz Title:** The top-level key.
2.  **Questions:** Keys inside the object.
3.  **Answers:** A list of strings. **The first answer is always the correct one.** (Don't worry, `json2qti` shuffles them in the output file).

```json
{
  "Basic Math Quiz": {
    "What is 1+1?": ["2", "3", "4", "5"],
    "What is 1+2?": ["3", "4", "5", "6"]
  }
}
```

### Code Formatting

You can include code snippets using markdown-style syntax:

*   **Inline Code:** Wrap text in single backticks (\`).
*   **Block Code:** Wrap text in triple backticks (\`\`\`).

```json
{
  "Python Quiz": {
    "What does `print('hello')` output?": [
      "`hello` to stdout",
      "`hello` to stderr",
      "Nothing"
    ],
    "What does this function do?\n```\ndef add(a, b):\n    return a + b\n```": [
      "Returns the sum of two numbers",
      "Returns the product of two numbers",
      "Prints the numbers"
    ]
  }
}
```

## 💻 Usage

### Quick Run (Recommended)
You can run it directly using `pipx` without installing anything globally:

```sh
pipx run json2qti quiz.json
```

### Manual Execution
Since the tool is a single file, you can also just download `json2qti.py` and run it:

```sh
python3 json2qti.py quiz.json
# Creates quiz.zip ready for LMS import
```

## 🛠️ Development

This project includes a test suite to ensure reliability. Tests are located in the `tests/` directory.

```sh
make test
```

## 📦 Dependencies

Just Python 3.
