Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bu-ist/bux-grader-framework
An edX external grader framework.
https://github.com/bu-ist/bux-grader-framework
edx sabermetrics
Last synced: 2 days ago
JSON representation
An edX external grader framework.
- Host: GitHub
- URL: https://github.com/bu-ist/bux-grader-framework
- Owner: bu-ist
- License: agpl-3.0
- Created: 2014-03-25T15:52:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-04T04:08:50.000Z (over 9 years ago)
- Last Synced: 2024-04-14T22:23:03.368Z (7 months ago)
- Topics: edx, sabermetrics
- Language: Python
- Size: 456 KB
- Stars: 3
- Watchers: 23
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# BU edX External Grader Framework
A simple framework for creating specialized [external graders](http://ca.readthedocs.org/en/latest/problems_tools/external_graders.html) for your [edX](http://code.edx.org/) course.
See the [demo course repository](https://github.com/bu-ist/bux-demo-course-grader) for an example course configuration. See the [configuration repository](configuration repository) for a more automated way to set up your grader environment.
## Prerequisites
* A dedicated XQueue queue with authentication credentials
* [RabbitMQ](http://www.rabbitmq.com/)
* [libxml2 and libxslt](http://lxml.de/installation.html)
* [statsd](https://github.com/etsy/statsd/) (optional)## Contributing
Pull requests are welcome!
Pull down this repository and use `pip` to install development requirements:
```bash
$ git clone [email protected]:bu-ist/bux-grader-framework
$ pip install -r requirements.txt
```### Documentation
Follow [pep257](http://legacy.python.org/dev/peps/pep-0257/)!
Package documentation lives in the `docs` directory and can be built in a variety of formats using [sphinx](http://sphinx-doc.org/).
```bash
cd docs
make html
```The build directory (`docs/_build`) is excluded from VCS.
### Tests
All unit tests live in the `tests` directory and can be run using [nose](https://nose.readthedocs.org/en/latest/).
```bash
$ nosetests
```### Coding Style
Follow [pep8](http://legacy.python.org/dev/peps/pep-0008/)!
Run [flake8](https://pypi.python.org/pypi/flake8) before you commit to make sure there aren't any violations:
```bash
$ flake8
```