Module to display dynamic quizzes in Jupyter notebooks and Jupyter Books. Uses JavaScript to provide
Project description
JupyterQuiz
JupyterQuiz is a tool for displaying interactive self-assessment quizes in Jupyter notebooks and Jupyter Book.
JupyterQuiz is part of my effort to make open source tools for developing modern, interactive textbooks.
- The other part of this effort is my interactive self-assessment quiz tool, JupyterCards.
- You can see both tools in action in my (in-progress) textbook Introduction to Data Science for Engineers.
These animated GIFs illustrate the two basic question types in JupyterQuiz:
Many Choice Question
Numerical Answer Question
For more examples with various types of functionality, check out the Review section of Chapter 3 of the Introduction to Data Science for Engineers Jupyter Book:
Example of JupyterQuiz in Action
The notebook test.ipynb shows more features but must be run on your own local Jupyter or in nbviewer -- GitHub only renders the static HTML that does not include the interactive quizzes. (If viewing on GitHub, there should be a little circle with a minus sign at the top of the file that offers you the ability to launch the notebook in nbviewer.)
It currently supports two types of quiz questions:
- Multiple/ Many Choice Questions: Users are given a predefined set of choices and click on answer(s) they believe are correct.
- Numerical: Users are given a text box in which they can submit answers in decimal or fraction form.
Each type of question offers different ways to provide feedback to help users understand what they did wrong (or right).
Quesitons can be loaded from:
- a Python list of dict,
- a JSON local file,
- via a URL to a JSON file.
Installation
JupyterQuiz is available via pip:
pip install jupyterquiz
Multiple/Many Choice Questions
Multiple/Many Choice questions are defined by a Question, an optional Code block, and a list of possible Answers. Answers include a text component and/or a code block, details on whether the Answer is correct, and Feedback to be displayed for that Answer. The schema for Multiple/Many Choice Questions is shown below:
* = Required parameter, (+) = At least one of these parameters is required
Example JSON for a many-choice question is below:
{
"question": "Choose all of the following that can be included in Jupyter notebooks?",
"type": "many_choice",
"answers": [
{
"answer": "Text and graphics output from Python",
"correct": true,
"feedback": "Correct."
},
{
"answer": "Typeset mathematics",
"correct": true,
"feedback": "Correct."
},
{
"answer": "Python executable code",
"correct": true,
"feedback": "Correct."
},
{
"answer": "Formatted text",
"correct": true,
"feedback": "Correct."
},
{
"answer": "Live snakes via Python",
"correct": false,
"feedback": "I hope not."
}
]
}
Numerical Questions
Numerical questions consist of a Question, an optional Precision, and one or more Answers. Each Answer can be a Value, a Range, or the Default, and each of these can include Feedback text. Values and Ranges can be marked as correct or incorrect. Ranges are in the form [A,B), where endpoint A is included in the range and endpoint B is not included in the range. When Precision is specified, numerical inputs are rounded to the specified precision before comparing to the Answers. The schema for Numerical questions is shown below:
* = Required parameter
Example JSON for a numerical question is below:
{
"question": "Enter the value of pi (will be checked to 2 decimal places):",
"type": "numeric",
"precision": 2,
"answers": [
{
"type": "value",
"value": 3.14,
"correct": true,
"feedback": "Correct."
},
{
"type": "range",
"range": [ 3.142857, 3.142858],
"correct": true,
"feedback": "True to 2 decimal places, but you know pi is not really 22/7, right?"
},
{
"type": "range",
"range": [ -100000000, 0],
"correct": false,
"feedback": "pi is the AREA of a circle of radius 1. Try again."
},
{
"type": "default",
"feedback": "pi is the area of a circle of radius 1. Try again."
}
]
}
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
Hashes for jupyterquiz-1.6.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ac2284ab98cde7f7061db8a6ed93344181a8846f6b21e21f94887ca89adccf4 |
|
MD5 | ce5fc63a12403ce7030f0610eb8bfd75 |
|
BLAKE2b-256 | db45677589284ba0a5ec5ac262aba4d1aac05a4234dea2c2a8c4fe3b28bf1d8e |