{"id":21203,"library":"edx-proctoring","title":"edx-proctoring","description":"Proctoring subsystem for Open edX, enabling online exam proctoring with support for multiple backends. Current version is 6.0.0 (latest), released June 2025. Released as needed with frequent patches.","status":"active","version":"6.0.0","language":"python","source_language":"en","source_url":"https://github.com/openedx/edx-proctoring","tags":["open edx","proctoring","exam","django","education"],"install":[{"cmd":"pip install edx-proctoring","lang":"bash","label":"Install from PyPI"}],"dependencies":[],"imports":[{"note":"The module path is edx_proctoring, not proctoring.","wrong":"from proctoring.models import ProctoredExam","symbol":"ProctoredExam","correct":"from edx_proctoring.models import ProctoredExam"}],"quickstart":{"code":"from edx_proctoring.models import ProctoredExam\nfrom django.contrib.auth import get_user_model\n\nUser = get_user_model()\nuser = User.objects.first()\nexams = ProctoredExam.objects.filter(user=user)\nprint(exams)","lang":"python","description":"Query proctored exams for a user."},"warnings":[{"fix":"Update Python to 3.11 or later.","message":"Version 5.0.0 dropped Python 3.8 support. Upgrade to Python 3.11+.","severity":"breaking","affected_versions":"<5.0.0"},{"fix":"Update Python to 3.12+ and remove any Proctortrack integrations.","message":"Version 6.0.0 dropped Python 3.11 support and removed all Proctortrack references (edx-proctoring-proctortrack).","severity":"breaking","affected_versions":"<6.0.0"},{"fix":"Use alternative proctoring backends like Software Secure or custom implementations.","message":"The Proctortrack backend is removed in 6.0.0. Migrate to another backend.","severity":"deprecated","affected_versions":">=6.0.0"},{"fix":"Run 'python manage.py migrate edx_proctoring' after install.","message":"Database migrations must be run after installation. Missing migrations can cause runtime errors.","severity":"gotcha","affected_versions":"all"}],"env_vars":null,"last_verified":"2026-04-27T00:00:00.000Z","next_check":"2026-07-26T00:00:00.000Z","problems":[{"fix":"Use 'from edx_proctoring.models import ProctoredExam' instead.","cause":"Wrong import path; the package is named 'edx_proctoring'.","error":"ModuleNotFoundError: No module named 'proctoring'"},{"fix":"Run 'python manage.py migrate edx_proctoring'.","cause":"Migrations not applied for the edx_proctoring app.","error":"django.db.utils.OperationalError: no such table: edx_proctoring_proctoredexam"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}