Proctoring subsystem for Open edX
Project description
edx-proctoring
=============================
.. image:: https://img.shields.io/pypi/v/edx-proctoring.svg
:target: https://pypi.python.org/pypi/edx-proctoring/
:alt: PyPI
.. image:: https://travis-ci.org/edx/edx-proctoring.svg?branch=master
:target: https://travis-ci.org/edx/edx-proctoring
:alt: Travis
.. image:: https://codecov.io/gh/edx/edx-proctoring/branch/master/graph/badge.svg
:target: https://codecov.io/gh/edx/edx-proctoring
:alt: Codecov
.. image:: https://img.shields.io/pypi/pyversions/edx-proctoring.svg
:target: https://pypi.python.org/pypi/edx-proctoring/
:alt: Supported Python versions
.. image:: https://img.shields.io/github/license/edx/django-component-views.svg
:target: https://github.com/edx/edx-proctoring/blob/master/LICENSE.txt
:alt: License
This is the exam proctoring subsystem for the Open edX platform.
Overview
--------
Proctored exams are exams with time limits that learners complete while online
proctoring software monitors their computers and behavior for activity that
might be evidence of cheating. This Python library provides the proctoring
implementation used by Open edX.
Documentation
-------------
For documentation about taking a proctored exam, see `Taking a Proctored Exam`_.
For authoring documentation, see `Including Proctored Exams In Your Course`_.
Installation
------------
To install edx-proctoring:
mkvirtualenv edx-proctoring
make install
To run the tests:
make test-all
For a full list of Make targets:
make help
Configuration
-------------
In order to use edx-proctoring, you must obtain an account (and secret
configuration - see below) with SoftwareSecure, which provides the proctoring
review services that edx-proctoring integrates with.
You will need to turn on the ENABLE_SPECIAL_EXAMS in lms.env.json and
cms.env.json FEATURES dictionary::
"FEATURES": {
:
"ENABLE_SPECIAL_EXAMS": true,
:
}
Also in your lms.env.json and cms.env.json file please add the following::
"PROCTORING_SETTINGS": {
"LINK_URLS": {
"contact_us": "{add link here}",
"faq": "{add link here}",
"online_proctoring_rules": "{add link here}",
"tech_requirements": "{add link here}"
}
},
In your lms.auth.json file, please add the following *secure* information::
"PROCTORING_BACKEND_PROVIDER": {
"class": "edx_proctoring.backends.software_secure.SoftwareSecureBackendProvider",
"options": {
"crypto_key": "{add SoftwareSecure crypto key here}",
"exam_register_endpoint": "{add enpoint to SoftwareSecure}",
"exam_sponsor": "{add SoftwareSecure sponsor}",
"organization": "{add SoftwareSecure organization}",
"secret_key": "{add SoftwareSecure secret key}",
"secret_key_id": "{add SoftwareSecure secret key id}",
"software_download_url": "{add SoftwareSecure download url}"
}
},
You will need to restart services after these configuration changes for them to
take effect.
License
-------
The code in this repository is licensed under the AGPL 3.0 unless
otherwise noted.
Please see ``LICENSE.txt`` for details.
How To Contribute
-----------------
Contributions are very welcome.
Please read `How To Contribute <https://github.com/edx/edx-platform/blob/master/CONTRIBUTING.rst>`_ for details.
Even though they were written with ``edx-platform`` in mind, the guidelines
should be followed for Open edX code in general.
Reporting Security Issues
-------------------------
Please do not report security issues in public. Please email security@edx.org.
Getting Help
------------
Have a question about this repository, or about Open edX in general? Please
refer to this `list of resources`_ if you need any assistance.
.. _list of resources: https://open.edx.org/getting-help
.. _Including Proctored Exams In Your Course: http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/course_features/credit_courses/proctored_exams.html
We don't maintain a detailed changelog. For details of changes, please see
either the `GitHub commit history`_.
.. _GitHub commit history: https://github.com/edx/edx-proctoring/commits/master
=============================
.. image:: https://img.shields.io/pypi/v/edx-proctoring.svg
:target: https://pypi.python.org/pypi/edx-proctoring/
:alt: PyPI
.. image:: https://travis-ci.org/edx/edx-proctoring.svg?branch=master
:target: https://travis-ci.org/edx/edx-proctoring
:alt: Travis
.. image:: https://codecov.io/gh/edx/edx-proctoring/branch/master/graph/badge.svg
:target: https://codecov.io/gh/edx/edx-proctoring
:alt: Codecov
.. image:: https://img.shields.io/pypi/pyversions/edx-proctoring.svg
:target: https://pypi.python.org/pypi/edx-proctoring/
:alt: Supported Python versions
.. image:: https://img.shields.io/github/license/edx/django-component-views.svg
:target: https://github.com/edx/edx-proctoring/blob/master/LICENSE.txt
:alt: License
This is the exam proctoring subsystem for the Open edX platform.
Overview
--------
Proctored exams are exams with time limits that learners complete while online
proctoring software monitors their computers and behavior for activity that
might be evidence of cheating. This Python library provides the proctoring
implementation used by Open edX.
Documentation
-------------
For documentation about taking a proctored exam, see `Taking a Proctored Exam`_.
For authoring documentation, see `Including Proctored Exams In Your Course`_.
Installation
------------
To install edx-proctoring:
mkvirtualenv edx-proctoring
make install
To run the tests:
make test-all
For a full list of Make targets:
make help
Configuration
-------------
In order to use edx-proctoring, you must obtain an account (and secret
configuration - see below) with SoftwareSecure, which provides the proctoring
review services that edx-proctoring integrates with.
You will need to turn on the ENABLE_SPECIAL_EXAMS in lms.env.json and
cms.env.json FEATURES dictionary::
"FEATURES": {
:
"ENABLE_SPECIAL_EXAMS": true,
:
}
Also in your lms.env.json and cms.env.json file please add the following::
"PROCTORING_SETTINGS": {
"LINK_URLS": {
"contact_us": "{add link here}",
"faq": "{add link here}",
"online_proctoring_rules": "{add link here}",
"tech_requirements": "{add link here}"
}
},
In your lms.auth.json file, please add the following *secure* information::
"PROCTORING_BACKEND_PROVIDER": {
"class": "edx_proctoring.backends.software_secure.SoftwareSecureBackendProvider",
"options": {
"crypto_key": "{add SoftwareSecure crypto key here}",
"exam_register_endpoint": "{add enpoint to SoftwareSecure}",
"exam_sponsor": "{add SoftwareSecure sponsor}",
"organization": "{add SoftwareSecure organization}",
"secret_key": "{add SoftwareSecure secret key}",
"secret_key_id": "{add SoftwareSecure secret key id}",
"software_download_url": "{add SoftwareSecure download url}"
}
},
You will need to restart services after these configuration changes for them to
take effect.
License
-------
The code in this repository is licensed under the AGPL 3.0 unless
otherwise noted.
Please see ``LICENSE.txt`` for details.
How To Contribute
-----------------
Contributions are very welcome.
Please read `How To Contribute <https://github.com/edx/edx-platform/blob/master/CONTRIBUTING.rst>`_ for details.
Even though they were written with ``edx-platform`` in mind, the guidelines
should be followed for Open edX code in general.
Reporting Security Issues
-------------------------
Please do not report security issues in public. Please email security@edx.org.
Getting Help
------------
Have a question about this repository, or about Open edX in general? Please
refer to this `list of resources`_ if you need any assistance.
.. _list of resources: https://open.edx.org/getting-help
.. _Including Proctored Exams In Your Course: http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/course_features/credit_courses/proctored_exams.html
We don't maintain a detailed changelog. For details of changes, please see
either the `GitHub commit history`_.
.. _GitHub commit history: https://github.com/edx/edx-proctoring/commits/master
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
edx-proctoring-1.3.8.tar.gz
(453.2 kB
view details)
Built Distribution
File details
Details for the file edx-proctoring-1.3.8.tar.gz
.
File metadata
- Download URL: edx-proctoring-1.3.8.tar.gz
- Upload date:
- Size: 453.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4f3af7465b0ba383ad603ed59f3f9efc1a9d50f38b7cb377d4bf412bf1215c4 |
|
MD5 | ef21829a3e3d5d7da7193f9f588b7bea |
|
BLAKE2b-256 | 80470d8a4dfc807e729d74f6e478d1bb02915608204ddae8a19b575941bf0f92 |
Provenance
File details
Details for the file edx_proctoring-1.3.8-py2.py3-none-any.whl
.
File metadata
- Download URL: edx_proctoring-1.3.8-py2.py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb62303e56b1a1c1b3deffc68fcc4fbd9679a90c86f6de80cd08cfae6ee8cad5 |
|
MD5 | c355f0caadf3ac15ecdb7fc132c10a94 |
|
BLAKE2b-256 | c4ef5cc2811fa0240dc53d9af6d823575a8cf86a5ac310bd280542b9a932c003 |