A quiz authoring format and tool with different export formats.
Project description
🌟 Queck: An YAML based Format for Quiz Authoring
Queck is a simple and structured format for authoring quizzes based on YAML and Markdown. It provides a flexible schema for different types of questions, supporting both basic and complex quiz designs. Queck can export quizzes into HTML or Markdown, with options for live watching and automatic re-exporting upon file changes.
🆚 Alternatives
- GIFT – A widely used Moodle format for quiz authoring, but with more complex syntax compared to Queck’s simple YAML structure.
🔑 Key Features
- 📝 YAML-based quiz authoring: Author quizzes in a clean, human-readable YAML format.
- 🧠 Support for diverse question types: Including multiple-choice, true/false, numerical answers, comprehension passages, and more.
- ✔️ Multiple answer formats: Single select, multiple select, numerical ranges, and tolerance-based answers.
- 🔍 Schema validation with Pydantic and Json Schema: Ensures your quiz structure is validated for correctness before exporting.
- 📤 Flexible export options: Export quizzes in JSON, HTML (print-ready), or Markdown formats.
- ⚙️ Command-line interface: Simple CLI for validation and export operations.
- ♻️ Live reloading for development: Integrated live reload server to auto-update quizzes as you edit.
- 📐 Mathematical equation support: Native support for dollar-math (
$..$and$$..$$) based LaTeX-style equations for math-based quizzes. - 💻 Code block rendering: Display code snippets within quiz questions for technical assessments.
- 💯 Optional Scoring: Optional scoring support.
- 🛠️ Easy Integration: Can be easily integrated into any system as it is available as a python package.
📝 Answer Types
Queck supports a variety of question types, including:
-
Choice Based
-
The separater
/#is used to mark option-wise feedback. To use the literal/#, use html code for / (/) or # (#) or both. -
Single Select Choices
List of yaml string marked with(o)resembling resembling radio button.answer: - ( ) Option 1 - (o) Option 2 /# feedback for option 2 - ( ) Option 3 - ( ) Option 4
-
Multiple Select Choices
List of yaml string marked with(x)resembling to-do list or checkboxes.answer: - ( ) Option 1 - (x) Option 2 /# feedback for option 2 - ( ) Option 3 /# feedback for option 3 - (x) Option 4
-
True/False
Yaml valuetrue/false.answer: true
-
-
Numerical
-
Integer
Yaml integer.answer: 5
-
Numerical Range
Yaml string of format{low}..{high}.answer: 1.25..1.35
-
Numerical Tolerance
Yaml string of format{value}|{tolerance}.answer: 1.3|.5
-
Single Floating Point Values
By default floating point values are not supported as a best practice. But they can be added with range or tolerance type. For example,0.5..0.5or0.5|0.
-
-
Short Answer
Yaml string.answer: France
Other validation rules
- Every choice based question should have atleast one incorrect option.
- Common data questions should have atleast two contextual questions inside them.
VS Code Profile
The below VS code profile contains the necessary extensions and configurations for syntax highlighting and validation of queck files.
https://gist.github.com/livinNector/596a7c507a95eaa59014df9505159ce8
Check this for the instructions to import the vscode profile.
📄 Sample Queck Format
Refer the example queck files from examples.
🚀 Installation
Installation as uv tool
The recommended way to install queck is to install as uv tool using the below command. Ensure uv is installed your system.
uv tool install queck
Installation using pip
Queck requres python>=3.12 install the latest version of python before installing queck.
To install Queck, run the following command:
pip install queck
💻 Commands
qeuck format
Formats the markdown content inside the queck file using mdformat.
queck format quiz.queck
queck export
To export a quiz in HTML format with live watching enabled:
queck export path/to/quiz.queck --format html --output_folder export --render_mode fast --watch
--format: Specify output format ashtml,mdorjson.--output_folder: Directory for exported files.--render_mode: (For html export only) Usefastfor KaTeX and Highlight.jscompatfor inline styles,latexfor using Latex.css.
Shorthands for options are also supported.
queck export path/to/quiz.queck -f html -o export -r fast -w
Experimental GenAI Features
To enable this feature install queck using the following extras.
uv tool install "queck[genai]"
queck extract
To extract questions from text based formats like markdown or latex.
queck extract path/to/file.md --model "openai:gpt-4o-mini"
The model is provided with the format {provider}:{model_name}
Available providers:
openaigroq
🤝 Contribution
We welcome contributions! Feel free to submit pull requests, report issues, or suggest new features. Let's make Queck better together! 🙌
⚖️ License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file queck-2.1.0.tar.gz.
File metadata
- Download URL: queck-2.1.0.tar.gz
- Upload date:
- Size: 29.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af02ec0c25c372be18542a16a78a1992efaf41aa4064b749e056a4ee74b7665a
|
|
| MD5 |
3439dd58cfa25c358c86064d073bc1fb
|
|
| BLAKE2b-256 |
72c6ca294769563195dca54c6630849e3bf0a52c9644fb13f5c705e8d8c587fb
|
File details
Details for the file queck-2.1.0-py3-none-any.whl.
File metadata
- Download URL: queck-2.1.0-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7cf6f07ce15844ae9642529ae2a0dc3ed74bff92cbf9431876db4413bd7892d
|
|
| MD5 |
dc2a5582a9d5275888ee3b5fa676fd14
|
|
| BLAKE2b-256 |
0c44c234ae32740c3a8dcd2c76a8b5e2da90dcea33d044202bc87ca59ea6eaa9
|