Skip to main content

A package to create programming assignments

Project description

homework

This library lets you easily set up programing homeworks

A homework is defined as two files, one with some lines changed according to the language defined by the library (see the docs) and anotherone with the solution. The solution file is encrypted so that the student's do not have it.

The rules are simple instructions that you add as comments to your code. All commands are structured as follows ## homework:[cmd]:[flag]. Here is an example:

## homework:replace:on
# dw = 
# w = 
dw = compute_gradients()
w -= alpha * dw
## homework:replace:off

When parsing the above code, the API will produce a solution file encrypted and
the original code will be replaced with:
## homework:start
dw = 
w = 
## homework:end

Usage

First run python homework.py make testfile.py, which returns the encryption key and creates the following files:

  • testfile_homework.py, which contains some broken lines so that the students can fill the gaps.
  • testfile_solution.py, which is the encrypted version of the source file (testfile.py)

Now you could send your students testfile_homework.py and remove the original testfile.py while keeping the encryption key. This way only people with the key can uncover the solution to the homework, by entering python homework.py uncover testfile_solution.py [encryption key] in the terminal.

Future work

  • Support for defining homeworks out of jupyter notebooks
  • Install the library via pip
  • Perhaps something you want to suggest!

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

homework-0.0.1.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

homework-0.0.1-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

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