Metadata-Version: 2.4
Name: json2qti
Version: 1.0.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)

Build LMS quizzes from simple json.

## Format

The JSON representation is as minimal as possible to allow for token-efficient generation and processing by LLMs. All questions are multiple choice. Questions are keys in an object. Answers are provided as a list of values. The first answer is always the correct choice. Generated quizzes will have answer shuffling enabled.

Here's an example:

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

## Usage

The simplest way to perform a quick conversion is using `pipx`:

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

Running locally:

```sh
python3 json2qti.py quiz.json # Produces quiz.zip QTI file
```

## Dependencies

This project has no dependencies beyond the Python standard library. The entire package is in a single file json2qti.py.

## Development

This project includes a test suite that can be run using `make test`. This will run the tests in the `tests/` directory using `pytest`.

```sh
make test
```
