Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/doc/including.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/including.rst')
-rw-r--r--doc/including.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/including.rst b/doc/including.rst
new file mode 100644
index 0000000..f087ae5
--- /dev/null
+++ b/doc/including.rst
@@ -0,0 +1,15 @@
+How to Include the Question API in your Activity
+================================================
+
+The quizdata module, supplied by the Question Support API requires two other
+libraries (currently) in order to function:
+ - PEAK-Rules
+ - PyParsing
+
+Both of these libraries need to be available for the quizdata module to be
+imported. Follow the standard method for including libraries in your activity
+to include those libraries, as well as the quizdata module, as a library. In
+the question-support-api project repository the only needed part to include in
+your activity is the quizdata directory, which should be placed on the python
+search path (preferably with other libraries required by your activity, rather
+than in the activity's own source area).