Metadata-Version: 2.4
Name: LabQuizBundle
Version: 1.0.0
Summary: LabQuiz bundle that includes labquiz, quiz-editor, and quiz-dash.
Author-email: "J.-F. Bercher" <jf.bercher@esiee.fr>
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/jfbercher/labquiz
Project-URL: Bug Tracker, https://github.com/jfbercher/labquiz/issues
Project-URL: Documentation, https://labquiz.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/jfbercher/labquiz
Keywords: quizzes,jupyter
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: User Interfaces
Description-Content-Type: text/markdown
Requires-Dist: labquiz==1.0.0
Requires-Dist: quiz_editor==1.0.0
Requires-Dist: quiz_dash==1.0.0

[![PyPI version](https://img.shields.io/pypi/v/labquiz.svg)](https://pypi.org/project/labquiz/)
[![Python versions](https://img.shields.io/pypi/pyversions/labquiz.svg)](https://pypi.org/project/labquiz/)
[![License](https://img.shields.io/pypi/l/labquiz.svg)](https://pypi.org/project/labquiz/)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jfbercher/labquiz/main?urlpath=%2Fdoc%2Ftree%2Fextras%2FlabQuizDemo_en_binder.ipynb)
[![Documentation Status](https://readthedocs.org/projects/labquiz/badge/?version=latest)](https://labquiz.readthedocs.io/en/latest/)   

Sponsor:

[![ESIEE Paris](https://github.com/jfbercher/labquiz/raw/main/esiee_logo_moyen.png)](https://www.esiee.fr)   



**LabQuiz** is a Python package that allows to seamlessly integrate interactive quizzes directly into Jupyter notebooks — useful for labs, tutorials, practical assignments, continuous assessment, and controlled exams.

* 👉🏼 `Live version`  Try it in [binder](https://mybinder.org/v2/gh/jfbercher/labquiz/main?urlpath=%2Fdoc%2Ftree%2Fextras%2FlabQuizDemo_en_binder.ipynb) ! 

It combines:

* ✅ Multiple-choice and numerical questions
* 🧩 Template-based parameterized questions
* 🔁 Configurable number of attempts
* 💡 Hints and detailed feedback
* 📊 Automatic scoring
* 🌐 Optional remote logging (Google Sheets)
* 📈 Real-time monitoring dashboard (if logging)
* 🔐 Integrity checks and anti-tampering mechanisms

And it comes with two optional companion tools:

* ✏️ **`quiz_editor`** — Create, edit, encrypt, and export question banks [streamlit app](https://jfb-quizeditor.streamlit.app/) | [src code](https://github.com/jfbercher/quiz_editor)
* 📊 **`quiz_dash`** — Monitor, correct, and analyze results in real time [streamlit app](https://jfb-quizdash.streamlit.app/) | [src code](https://github.com/jfbercher/quiz_dash)
---
```mermaid
flowchart LR
    %% Nodes
    A["YAML Quiz<br/>(Quiz-as-Code)"]
    B["quiz_editor<br/>Authoring Interface<br/>(optional)"]
    C["Jupyter Notebook<br/>+ Interactive Quizzes"]
    D["Remote Backend<br/>(e.g., Google Sheets)"]
    E["quiz_dash<br/>Monitoring Dashboard"]
    F[Analytics]
    G[Marks Table]
    H[Student Reports]
    I[Exports: <br/>Web-based Training Quizzes <br/>AMC / LaTeX Paper Quizzes]

    %% Flows
    B -.-> A
    A ---> C
    C -.-> D
    D --> E
    E --> F
    E --> G
    E --> H
    A -.-> I
    

    %% Styles
    classDef authoring fill:#e3f2fd,stroke:#1e88e5,stroke-width:1px;
    classDef runtime fill:#e8f5e9,stroke:#43a047,stroke-width:1px;
    classDef backend fill:#fff3e0,stroke:#fb8c00,stroke-width:1px;
    classDef dashboard fill:#f3e5f5,stroke:#8e24aa,stroke-width:1px;
    classDef outputs fill:#fce4ec,stroke:#d81b60,stroke-width:1px;
    classDef export fill:#e0f7fa,stroke:#00838f,stroke-width:1px;

    %% Assign classes
    class A,B authoring;
    class C runtime;
    class D backend;
    class E dashboard;
    class F,G,H outputs;
    class I,J export;
```

Figure: Overview of the `LabQuiz` ecosystem. Dashed arrows indicate optional components. YAML quizzes drive both interactive notebooks and exports, monitored via a dashboard producing analytics, marks tables, and student reports.

---

* `Installation`: 
```bash
# From source
   pip install git+https://github.com/jfbercher/labquiz.git
# or from PyPI
   pip install labquiz
```

---

# 🚀 Why LabQuiz?

LabQuiz is designed for **active learning** and **controlled assessment** in computational notebooks.

It helps instructors:

* Increase student engagement with embedded exercises
* Provide structured feedback during lab sessions
* Monitor progress in real time
* Run controlled tests and exams
* Detect configuration tampering or integrity violations

It helps students:

* Learn through interaction and immediate feedback
* Track their progress
* Work within structured assessment modes

---

# 🚠 What LabQuiz Does

Inside your notebook, you can:

* ✅ Add multiple-choice questions (`mcq`)
* 🔢 Add numerical questions with tolerance (`numeric`)
* 🧩 Create parameterized template questions
* 🔁 Limit attempts
* 💡 Provide hints and corrections
* 📊 Compute automatic scores
* 🌐 Log all activity to a Google Sheet backend (optional)
* 🔐 Enable exam mode with integrity checks

Example:

```python
from labquiz import QuizLab

quiz = QuizLab(URL, "my_quiz.yml", retries=2, exam_mode=False)
quiz.show("quiz1")
```
---

# 📸 Examples

## Multiple-choice question (with hints & correction)


![MCQ Example](https://github.com/jfbercher/labquiz/raw/main/docs/doc_images/quiz2.gif)

## Numerical question

![Numeric Example](https://github.com/jfbercher/labquiz/raw/main/docs/doc_images/quiz59.gif)

## Template-based question (dynamic variables)

![Template Example](https://github.com/jfbercher/labquiz/raw/main/docs/doc_images/quiz54.gif)

---

# 🧩 Question Types, Pedagogical modes, Logging

## Question types

LabQuiz supports four types:

| Type               | Description                           |
| ------------------ | ------------------------------------- |
| `mcq`              | Standard multiple-choice              |
| `numeric`          | Numerical answers with tolerance      |
| `mcq-template`     | Context-dependent MCQ                 |
| `numeric-template` | Context-dependent numerical questions |

**Template questions** allow dynamic evaluation based on runtime variables — ideal for practical lab computations.

Example:

```python
quiz.show("quiz54", a=res1, b=res2)
```

Variables can also be generated dynamically
```python
quiz.show("quiz54", autovars=True)
```

The expected solution is dynamically computed using Python expressions.

## Pedagogical modes

LabQuiz supports three pedagogical modes:

* Learning mode (hints + correction available, score display)
* Test mode (limited attempts, score display but no correction)
* Exam mode (no feedback, secure logging)

Quizzes are defined in simple YAML format and support

* Logical constraints (XOR, IMPLY, SAME, IMPLYFALSE)
* Bonuses and penalties
* Relative and absolute tolerances
* Variable generation for templates

## 📊 Remote Logging & Dashboard

All data can be stored in a **Google Sheet backend**. 

LabQuiz can log: Validation events, Parameters, User answers, Integrity hashes... 
LabQuiz also includes multiple anti-cheating mechanisms (Machine fingerprinting, Source hash verification, Detection of parameter tampering, Optional encrypted question files, Runtime integrity daemon...)


---

# ⚙️ Installation


From PyPI

```bash
pip install labquiz
```

From source:

```bash
pip install git+https://github.com/jfbercher/labquiz.git
```

Import:

```python
import labquiz
from labquiz import QuizLab
```

Instantiate:

```python
quiz = QuizLab(URL, QUIZFILE,
               retries=2,
               needAuthentication=True,
               mandatoryInternet=False)
```

---


# 🛠 Additional Tools

## ✏️ `quiz_editor` — Build & Export Question Banks

Creating YAML files manually works — but **`quiz_editor` is intended to makes it easier.** It can also be useful outside ob LabQuiz as a general quiz-editor with export capabilities.

### Key features:

* Visual question editing (MCQ, numeric, templates)
* Categories & tags
* Variable generation for templates
* Bonus / malus configuration
* Logical constraints (XOR, IMPLY, SAME, etc.)
* One-click export to:

  * ✅ YAML
  * 🔐 Encrypted version
  * 🌍 Interactive HTML (training mode)
  * 📝 HTML exam version (Google Sheet connected)
  * 📄 AMC–LaTeX format (paper exams)

Online version:
👉 [https://jfb-quizeditor.streamlit.app/](https://jfb-quizeditor.streamlit.app/)

Install locally:

```bash
pip install quiz-editor
```

![Quiz Editor](https://github.com/jfbercher/labquiz/raw/main/docs/doc_images/quiz_editor_2.png)


---

## 📊 `quiz_dash` — Real-Time Monitoring & Correction

`quiz_dash` is the companion dashboard for instructors.

It connects to your Google Sheet backend and provides:

* 📈 Live tracking of submissions
* Live class overview
* 👤 Student-by-student monitoring
* 🔍 Integrity checks (mode changes, retries tampering, hash verification)
* ⚖ Adjustable grading weights
* 🔄 Automatic recalculation
* 📥 CSV export of results

Online version:
👉 [https://jfb-quizdash.streamlit.app/](https://jfb-quizdash.streamlit.app/)

![Dashboard](https://github.com/jfbercher/labquiz/raw/main/docs/doc_images/Monitoring_marks.png)


---
## 🌍 Optional: Zero Installation with JupyterLite

LabQuiz can run entirely in the browser using JupyterLite (WASM).
Perfect for fully web-based lab environments.


# 📦 Ecosystem

| Tool            | Purpose                           |
| --------------- | --------------------------------- |
| **labquiz**     | Notebook quiz engine              |
| **quiz_editor** | Question bank creation & export   |
| **quiz_dash**   | Monitoring & correction dashboard |

📦 Repositories:

* [https://github.com/jfbercher/labquiz](https://github.com/jfbercher/labquiz)
* [https://github.com/jfbercher/quiz_editor](https://github.com/jfbercher/quiz_editor)
* [https://github.com/jfbercher/quiz_dash](https://github.com/jfbercher/quiz_dash)

Online tools:

* [https://jfb-quizeditor.streamlit.app/](https://jfb-quizeditor.streamlit.app/)
* [https://jfb-quizdash.streamlit.app/](https://jfb-quizdash.streamlit.app/)

---


# 🎯 Typical Workflow

1. Prepare questions (YAML or `quiz_editor`)
2. Optionally encrypt file
3. Create Google Sheet backend
4. Instantiate `QuizLab` in notebook
5. Run lab / test / exam
6. Monitor using a python console or with `quiz_dash`
7. Post-correct with adjustable grading

---

# 🏁 Demonstration

See:

* `labQuizDemo.ipynb` in `extras/`
* 👉🏼 `Live version` 👈  Try it in [binder](https://mybinder.org/v2/gh/jfbercher/labquiz/main?urlpath=%2Fdoc%2Ftree%2Fextras%2FlabQuizDemo_en_binder.ipynb) 

---

# 📜 License

GPL-3.0 license
