Metadata-Version: 2.4
Name: sketchresponse
Version: 0.0.6
Summary: A tool for drawing and evaluating mathematical functions
Project-URL: Repository, https://github.com/PrairieLearn/sketchresponse
Author: Massachusetts Institute of Technology
License-Expression: LGPL-2.1-or-later
License-File: LICENSE
Keywords: education,edx,grading,mathematics,prairielearn
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Requires-Dist: future>=0.18.0
Requires-Dist: numpy>=1.20.0
Requires-Dist: sympy>=1.9
Provides-Extra: server
Requires-Dist: flask>=2.0.0; extra == 'server'
Description-Content-Type: text/markdown

SketchResponse
===========

**Note: This is a forked copy of [`sketchresponse/SketchResponse`](https://github.com/SketchResponse/sketchresponse) adapted for [PrairieLearn](https://www.prairielearn.com/). This library is used as the backing for the [`pl-sketch`](https://prairielearn.readthedocs.io/en/latest/elements/pl-sketch/) element.**

This project (will be) published to PyPI as [`sketchresponse`](https://pypi.org/project/sketchresponse/), and on NPM as [`@prairielearn/sketchresponse`](https://www.npmjs.com/package/@prairielearn/sketchresponse).

**Warning: The API is not fully compatible with the original SketchResponse project. Additionally, the codebase has been significantly refactored, and Python 3.10 is now the minimum supported version. The information in this README is not guaranteed to be up to date.**

SketchResponse is a Javascript/Python(2.7-3.x) tool for drawing and evaluating
mathematical functions. It was designed for use with the edX online
courseware platform. However, it is a self-contained application that can be
integrated into other web platforms.

Features
--------

- Sketch Tool - configurable Javascript front-end with plugin components to provide different
function drawing and annotation capabilities. See [Sketch-Tool Usage](docs/sketch_tool_usage.md) for a description of the non-configurable interface elements of the sketch tool. See
[Sketch-Tool Plugin Configuration](docs/probconfig_plugins.md) for a description of the available
plugins.
- Grader Library - python back-end that provides an API of function grading methods that
can be composed to construct custom grading scripts. See
[Create a Simple Grading Script](docs/simple_grader.md) for a tutorial on building
a simple grading script.

Installation
------------

* Clone this repository to the directory of your choice:
  * By using HTTPS:

    ```sh
    $ git clone https://github.com/SketchResponse/sketchresponse.git
    ```
  * By using SSH:

    ```sh
    $ git clone git@github.com:SketchResponse/sketchresponse.git
    ```

## Sketch Tool Front-End

### Prerequisites

You'll need to have [Node.js](http://nodejs.org) and npm (which is now packaged with Node) to be installed on your system. **_Note: This currently only works with Node version 7.10.1_**

### Installation

* Change to the *sketch_tool* directory:

  ```sh
  $ cd sketch_tool
  ```

* Install dependencies listed in *package.json*:

  ```sh
  $ npm ci
  ```

* Build a local distribution of the *sketch_tool*:

  ```sh
  $ npm run build
  ```

## Grader Back-End

The SketchResponse grader backend has only two third party package requirements:

* [flask](http://flask.pocoo.org/)
* [numpy](http://www.numpy.org/)

Install them by running the following command in the root directory:

```sh
$ pip install -r requirements.txt
```

Flask is only required if you want to run a local server for convenience when implementing and testing new grading scripts. See the Tutorial [Test a Grading Script on a Local Server](docs/local_test.md) for details.

Usage Guides
-----------

### Examples and Tutorials
- [Grading Script Template](grader_scripts/grader_template.py)
- [Running & Building the Sketch Tool Front-end](docs/sketch_tool_dev_usage.md)
- [Testing a Grading Script on a Local Server](docs/local_test.md)
- Tutorial - [Create a Simple Grading Script](docs/simple_grader.md)
- Tutorial - [Create a Complex Grading Script](docs/complex_grader.md)
- Tutorial - [Create a Physics Problem Grading Script](docs/physics_grader.md)
- Tutorial - [Using Groups to Grade Plugins](docs/groups_grader.md)
- Tutorial - [edX Quick Start Deployment Guide](docs/edx_quickstart.md)

### Reference Information
- [Sketch-Tool Plugin Configuration](docs/probconfig_plugins.md)
- [Grader-Library API](https://SketchResponse.github.io/sketchresponse)
- [Gradeable Data Format](docs/gradeable_data_format.md)

Contribute
----------

Contributions to this project are very welcome! If you'd like to contribute, please open a GitHub issue and we'll get in touch.

- Issue Tracker: [github.com/SketchResponse/sketchresponse/issues](https://github.com/SketchResponse/sketchresponse/issues)
- Source Code: [github.com/SketchResponse/sketchresponse/](https://github.com/SketchResponse/sketchresponse/)

## Running tests for the Grader Library Back-end

The grader library has a collection of tests to validate the API functions. Those tests can be run from the root directory of the sketchresponse repository with the command below. If you haven't already done so, install the additional packages needed only for the unittest modules.

```sh
$ pip install -r test_requirements.txt
$ python -m unittest discover -t . test_grader_lib/
```

## Rebuilding the documentation

As this project evolves, the current documentation will no longer match the existing codebase. Follow the instructions in [HowTo Build the Docs](docs/howto_build_docs.md) to rebuild as needed.


Support
-------

If you are having issues or encounter a bug, please [create a GitHub issue](https://github.com/SketchResponse/sketchresponse/issues) and we'll try to help!

License
-------

Please refer to the [LICENSE file](LICENSE) in the root of the SketchResponse repository.
