JupyterLab extension that blocks copy-paste in code cells to prevent cheating during exams
Project description
jupyterlab-anticheat
A JupyterLab extension that blocks copy-paste in code cells to prevent cheating during university programming exams. Students are required to type code manually, reinforcing genuine learning.
Features
- Blocks
Ctrl+V/Cmd+Vkeyboard paste in code cells - Blocks drag-and-drop of code into cells
- Blocks right-click → Paste from the context menu
- Shows a clear red notification message to the student
- Works in Anaconda JupyterLab and web-hosted JupyterLab (both run in a browser)
- Instructor can enable/disable via Command Palette or Settings
- Configurable block message via Settings
Installation
cd jupyterlab-anticheat
pip install -e .
jupyter labextension develop --overwrite .
See install.txt for full step-by-step instructions.
Instructor Controls
Open the Command Palette (Ctrl+Shift+C) and search for AntiCheat to:
- Enable paste blocking (Exam Mode)
- Disable paste blocking
- Toggle paste blocking
Settings
Go to Settings → Advanced Settings Editor → AntiCheat Exam Extension to configure:
enabled— turn blocking on or off (default:true)message— customize the message shown when paste is blocked
How It Works
The extension registers event listeners at the document level using capture phase (addEventListener(..., true)), which means it intercepts events before JupyterLab's editor (CodeMirror) can process them. It checks whether the target element is inside a code cell and, if so, cancels the event and displays a notification.
Limitations
- A technically advanced student could open browser DevTools and disable the extension from the console. For high-stakes exams, combine with browser lockdown tools.
- Does not block paste in Markdown cells (intentional — Markdown editing is not exam content).
License
MIT
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
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 jupyterlab_anticheat-1.0.6.tar.gz.
File metadata
- Download URL: jupyterlab_anticheat-1.0.6.tar.gz
- Upload date:
- Size: 118.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59d42d8677cfc81254580dfbbe8d1f427d6e9d377724449e518b07eea760c881
|
|
| MD5 |
12da0b8adcb40234cf516bb7bf62ba50
|
|
| BLAKE2b-256 |
6befe40beca4464653a4360fed78fdc5ae3bffb4611cd620dbb65e09b44c8f19
|
File details
Details for the file jupyterlab_anticheat-1.0.6-py3-none-any.whl.
File metadata
- Download URL: jupyterlab_anticheat-1.0.6-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de3d17c3fce876ad92942c67b69c24c5ad6fda3bb9875613b85180a671cbe683
|
|
| MD5 |
248e8dd129d314fea8be122f543abc55
|
|
| BLAKE2b-256 |
bf9466a58b49e2594c0c550b3b85ce6f1f74e3b1db1052c47d049c516e9db3c4
|