Loading repository data…
Loading repository data…
jmshea / repository
An interactive Quiz generator for Jupyter notebooks and Jupyter Book
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
JupyterQuiz is a tool for displaying interactive self-assessment quizzes in Jupyter notebooks and Jupyter Book. JupyterQuiz was created to enable interactive quizzes for readers of my book Foundations of Data Science with Python [Affiliate Link]
Important Note for JupyterLab 4 Users: TLDR: Make sure you are using Jupyter Quiz version 2.8.0 or later.
There have been two significant changes to Jupyter Lab recently:
Changes to the math rendering system in JupyterLab 4 have broken the LaTeX rendering in JupyterQuiz. There is not currently a simple solution, but I have opened an issue requesting that the necessary methods be made available. Math should still work in Jupyter Book. A very hacky solution for Jupyter Lab has now been moved to the main branch staring with 2.8.0. This loads MathJax 3 on top of the JupyterLab MathJax version. Although this is not the ideal solution, the upstream problem has not been fixed after many months, and so I felt I had to take this step. If it breaks anything for you, please let me know.
Starting with Jupyter 4.2.5, when Markdown cells are rendered, the id tags
will be stripped from any HTML elements. These id tags were needed by
JupyterQuiz users who use hidden spans to embed quizzes in Jupyter notebooks.
This probably affects a small number of JupyterQuiz users. If you are affected,
update to JupyterQuiz 2.8.0 or later and change your id tags to class, and
everything should work again.
Change to precision parameter: Starting with 2.7.0a3 and 2.8.0, I changed how the precision parameter effects numerical answers. Prior to these versions, precision specified a decimal place; from these versions on, it specifies a number of significant digits. )
JupyterQuiz is part of my effort to make open source tools for developing modern, interactive textbooks.
If you would like to see a video that introduces these tools and discusses why I made them, check out my JupyterCon 2023 talk on Tools for Interactive Education Experiences in Jupyter Notebooks and Jupyter Books.
These animated GIFs illustrate two of the basic question types in JupyterQuiz (a third String type of question was added in April 2025, and I have not created an animated GIF for it yet):
Many Choice Question

Numerical Answer Question

String Questions

Examples using JupyterQuiz
This library was built to create interactive questions for the Foundations of Data Science with Python book by John M. Shea. Example: Chapter 3 Self-Assessment Questions
Some other examples I have seen around the web include:
If you using JupyterQuiz in a Jupyter Book or other way that is useable on the web, please clone this repository, add your information to the bulleted list in the README.md, and make a pull request for me to include a link to your use of this library.
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 three types of quiz questions:
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:
New as of version 1.6 (9/26/2021): You can now embed the question source (most importantly, the answers) in Jupyter Notebook so that they will not be directly visibile to users!
Question source data can be stored in any Markdown cell in a hidden HTML element (such as a span with the display style set to "none"). Questions can be stored as either JSON or base64-encoded JSON (to make them non-human readable). Please see the notebook HideQuiz.ipynb for examples of how to use this.
JupyterQuiz supports a few options:
In addtion, it supports additional options for controlling the formatting of the quiz options.
border_radius = boolean, border radius of question boxesquestion_alignment = string, alignment of question text (e.g., "left", "right)max_width = int, max width of question boxesFor more fine-grained formatting control of the question text, leaving the
question field the empty string ("") will result in only the answers being
displayed. This allows for custom question formatting such as including images,
tables, more complex code examples, etc. Note that this feature works better for
a single question quiz and may not work as well with shuffled quizzes or quiz
questions selected at random.
Colors can be changed by passing the colors keyword argument. Pass in a dictionary of colors that you would like to change. Here is the default dictionary for reference:
color_dict = {
'--jq-multiple-choice-bg': '#6f78ffff', # Background for the question part of multiple-choice questions
'--jq-mc-button-bg': '#fafafa', # Background for the buttons when not pressed
'--jq-mc-button-border': '#e0e0e0e0', # Border of the buttons
'--jq-mc-button-inset-shadow': '#555555', # Color of inset shadow for pressed buttons
'--jq-many-choice-bg': '#f75c03ff', # Background for question part of many-choice questions
'--jq-numeric-bg': '#392061ff', # Background for question part of numeric questions
'--jq-numeric-input-bg': '#c0c0c0', # Background for input area of numeric questions
'--jq-numeric-input-label': '#101010', # Color for input of numeric questions
'--jq-numeric-input-shadow': '#999999', # Color for shadow of input area of numeric questions when selected
'--jq-incorrect-color': '#c80202', # Color for incorrect answers
'--jq-correct-color': '#009113', # Color for correct answers
'--jq-text-color': '#fafafa' # Color for question text
}
There is one included alternative set of colors to the default colors, which be selected by passing colors='fdsp'.
New as of version 2.0 (7/26/2022): There is now code to enable preserving student responses (for instance, for checking/grading their quizzes). If you want to use this functionality, please read this carefully!
To enable this behavior, set preserve_responses=True in display_quiz()
This option produces a text ouptut that consists of a question number (based on the question order) along with the chosen answer. Instructions are given at the end of the quiz on how to copy the text output and paste it into a pre-prepared Markdown cell. See preserve-responses.ipynb for an example.
The requirement that the student copy and paste the text output to preserve it is because of limitations in the exchange of information from the JavaScript side to the Python side. As far as I know, the only way around this requires a plug-in, and I do not want to require that. I will continue to investigate solutions to this in the future.
This option is not compatible with shuffle_questions = True or setting num because these result in the order of the questions being random, which makes no sense when reporting answers vs question number.
Dr. WJB Mattingly (@wjbmattingly) has made a Streamlit App for creating JupyterQuiz question files in an interactive way without having to edit a JSON file. It currently supports multiple/many choice questions.
JupyterQuiz is available via pip:
pip install jupyterquiz
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."
},
{