Part of edX code.
XBlock Courseware Components
XBlock is a component architecture by edX.org for building courseware.
This is a pre-alpha release of the XBlock API, to gather input from potential users of the API. We like what is here, but are open to suggestions for changes. We will be implementing this shortly in the edX LMS.
This repo contains the core code for implementing XBlocks.
Background
EdX courseware is built out of components that are combined hierarchically. These include components like the video player, LON-CAPA problems, as well as compound components like learning sequences. We are developing a second-generation API for these components called XBlocks. Although they're in a prototype stage, we like the API, and want to collaborate with others to develop them into an industry standard. This is our proposed API and specification for XBlocks.
How does this differ from existing industry standards like Learning Tools Interoperability (LTI) and SCORM? On a high level, XBlocks is a Python language-level API, and it provides sensible defaults for things like storing data. XBlocks could be wrapped up in LTI, and one could make an LTI XBlock. The core reason to write an XBlock is that it is deployable. You can give us the code to an XBlock, and we can embed it in our courseware. LTI would require you to give us a virtual machine image which ran it.
Installation
This code runs and is tested on Python 2.7 and 3.5.
Get a local copy of this repo.
(Optional) Create and activate a virtualenv to work in.
Install the requirements and register the XBlock entry points with (you may need to sudo this if you don't use virtualenv):
$ make requirements
Testing
To run the test suite:
$ pytest
This will run:
- Unit tests of the XBlock core and runtime, with coverage data collected.
To view the coverage report:
$ coverage report
See the coverage.py docs for more info and options.
Style Testing
We use two tools - pylint
and pep8
- to manage the code quality and style
of all Python files in this repo. Our goal is to maintain zero reported pylint
and pep8 violations at all times.
To run these tools on a single file:
$ pylint path/to/file.py
$ pep8 path/to/file.py
To run these tools on the whole project:
$ pylint .
$ pep8 .
We do not abide by all pylint and pep8 violations. You can check out which violations we ignore by viewing the contents of pylintrc and setup.cfg. Before making a pull request, you should ensure that your branch does not add any new quality violations by checking your code with these tools.
You can run these tests automatically before pushing code to github (and running the validation in Travis) by activating the pre-push script
cd .git/hooks ln -s ../../script/pre-push cd -
Using the XBlock-SDK
The XBlock-SDK exists in a separate repository. The SDK contains useful tools for developing your own XBlocks, such as a template XBlock generator, sample XBlocks that demonstrate XBlock functionality.
You can find it in its own repository: https://github.com/edx/xblock-sdk
Documentation
The docs for the XBlock API is on Read The Docs: https://xblock.readthedocs.org .
Reading the code
There are distinct layers to this code. In the docstrings, we've tried to make clear which layer the code lives in, though sometimes the lines are blurred:
- XBlock The sample XBlock code. This is the most important, it is the code that most third parties will be writing, and demonstrates the XBlock interfaces.
- Runtime The runtime code that we think will be common to all runtimes. This is the behind-the-scenes code edX will write to make XBlocks work. This layer may not be real code here, but we'll need to write real code to perform these functions.
Making your own XBlock
Making an XBlock can be as simple as creating a Python class with a few specific methods.
Instructions for constructing a new XBlock along with examples can be found in the XBlock SDK: https://github.com/edx/xblock-sdk
License
The code in this repository is licensed the Apache 2.0 license unless otherwise noted.
Please see LICENSE.txt
for details.
How to Contribute
Contributions are very welcome. The easiest way is to fork this repo, and then make a pull request from your fork. The first time you make a pull request, you may be asked to sign a Contributor Agreement.
Please refer to our contributor guidelines in the main edx-platform repo for important additional information.
Reporting Security Issues
Please do not report security issues in public. Please email security@edx.org
Packaging
To package a new release:
Update the version number in xblock/VERSION.txt.
Tag the commit to be released:
$VERSION=0.5 git tag -a -m "XBlock version $VERSION" xblock-$VERSION
Push the tag and wait for Travis to upload to PyPI:
git push --tags
Mailing List and IRC Channel
You can discuss this code on the edx-code Google Group or in the
#edx-code
IRC channel on Freenode.