Skip to main content

Interactive quizzes for Jupyter and Jupyter Book

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.

These animated GIFs illustrate the two basic question types in JupyterQuiz:

Many Choice Question

Example many-choice question using JupyterQuiz.


Numerical Answer Question

Example numerical answer question using JupyterQuiz.


Examples using JupyterQuiz

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 two types of quiz questions:

  1. Multiple/ Many Choice Questions: Users are given a predefined set of choices and click on answer(s) they believe are correct.
  2. 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 dicts,
  • a JSON local file,
  • via a URL to a JSON file.

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.

Quiz options

JupyterQuiz supports a few options:

  • num = Number of questions to present. If this option is chosen, the set of questions will be selected at random.
  • shuffle_questions = boolean, whether to shuffle order of questions (default False)
  • shuffle_answers = boolean, whether to shuffle answers for multiple-choice questions (default True)
  • preserve_responses = boolean, whether to output the user responses in a way that is preserved upon reload of the notebook (default False) -- see below

Quiz Formatting

In addtion, it supports additional options for controlling the formatting of the quiz options.

  • border_radius = boolean, border radius of question boxes
  • question_alignment = string, alignment of question text (e.g., "left", "right)
  • max_width = int, max width of question boxes

For 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'.

Preserving student responses

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.

Tool for making Multiple/Many Choice Questions

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.

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: Schema for Multiple/Many Choice Questions in JupyterQuiz

* = 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:

Schema for Numerical Questions in JupyterQuiz

* = 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."
            }
        ]
    }

Working with JupyterLite

This should work with JupyterLite as of version 2.1.2. Here is an example that should work on JupyterLite:

import micropip
await micropip.install('jupyterquiz')

from jupyterquiz import display_quiz
git_url='https://raw.githubusercontent.com/jmshea/Foundations-of-Data-Science-with-Python/main/questions/'

display_quiz(git_url+'ch1.json')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupyterquiz-2.8.0.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

jupyterquiz-2.8.0-py2.py3-none-any.whl (20.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file jupyterquiz-2.8.0.tar.gz.

File metadata

  • Download URL: jupyterquiz-2.8.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.2

File hashes

Hashes for jupyterquiz-2.8.0.tar.gz
Algorithm Hash digest
SHA256 7c58ecb5dbc6bf48bd5efcaec01f696633cc04354d17ec960b47206cbe3e493c
MD5 1ce07a6d04b297bad8ba201c7579a2d4
BLAKE2b-256 3db2c45e9bbbb424c3bbf660c6ad3d89a02e6e81dae63e3ad69a09f8ed8804f0

See more details on using hashes here.

File details

Details for the file jupyterquiz-2.8.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for jupyterquiz-2.8.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e953f35ddf1867995f0f83e277d56a16ac103b25de6bbf723c64d442663155ae
MD5 f67499fc66d70d78c82e389edbc6f7cf
BLAKE2b-256 eb71a5e59c9eed6d821cbcca6b586f1ae143c6006dde1fe8143528082956e2f2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page