Skip to main content

API for adding content to content curation server

Project description

## Rice Cooker

A framework for creating channels on [Kolibri Studio](https://contentworkshop.learningequality.org/).


### Installation

* [Install pip](https://pypi-hypernode.com/pypi/pip) if you don't have it already.

* Run `pip install ricecooker`

* You can now reference ricecooker using `import ricecooker` in your .py files


### Using the Rice Cooker

A sample program has been created [here](https://github.com/learningequality/ricecooker/blob/master/ricecooker/sample_program.py)

* Initializing the Channel
In order for the rice cooker to run properly, you must include a `create_channel` method in your target py file
that returns a Channel model. This function will be responsible for building a tree based on `ricecooker.classes`.

Start by importing `Channel` from `ricecooker.classes.nodes` and create a Channel model. The Channel model has
the following fields:
- channel_id (str): channel's unique id
- domain (str): who is providing the content (e.g. learningequality.org)
- title (str): name of channel
- description (str): description of the channel (optional)
- thumbnail (str): local path or url to image file (optional)

For example:
```
from ricecooker.classes.nodes import Channel

def construct_channel(args):

channel = Channel(
domain="learningequality.org",
channel_id="rice-channel",
title="Rice Channel",
)
_build_tree(channel, <source tree>) # see sample_program.py for example build_tree function

return channel
```


* Building the Tree
Once your channel is created, you can start adding content. To do this, you will need to convert your data to
the rice cooker's models. Here are the model types that are available to you:

- Topic (folders to add hierarchy to the channel's content)
- Video (mp4)
- Audio (mp3 or wav)
- Document (pdf)
- Exercise (assessment-based content with questions)

The `ricecooker.classes.nodes` module has the function `guess_content_kind`, which takes in a file or list of
files as well as a list of questions (if available) and determines what model best suits those files
(if no match could be found, an `UnknownContentKindError` will be raised). For example:
```
>> guess_content_kind([])
'topic'
>> guess_content_kind(["http://path/to/some/file.mp4"])
'video'
>> guess_content_kind([], ["Question?"])
'exercise'
```

Once you have created the model, add it to a parent node with `<parent-node>.add_child(<child-node>)`


* Adding Exercises
Exercises are special model kinds that have questions used for assessment. In order to set the criteria
for completing exercises, you must set `exercise_data` to equal a dict containing a mastery_model field
based on the mastery models provided under `le_utils.constants.exercises`. If no data is provided,
the rice cooker will default to mastery at 3 of 5 correct. For example:
```
node = Exercise(
exercise_data={'mastery_model': exercises.M_OF_N, 'randomize': True, 'm': 3, 'n': 5},
...
)
```

To add a question to your exercise, you must first create a question model from `ricecooker.classes.questions`.
Your program is responsible for determining which question type to create. Here are the available question types:

- PerseusQuestion: special question type for pre-formatted perseus questions
- MultipleSelectQuestion: questions that have multiple correct answers (e.g. check all that apply)
- SingleSelectQuestion: questions that only have one right answer (e.g. radio button questions)
- InputQuestion: questions that have text-based answers (e.g. fill in the blank)
- FreeResponseQuestion: questions that require subjective answers (ungraded)

To set the correct answer(s) for input questions, you must provide an array of all of the accepted answers (`answers`).
For multiple selection and single selection questions, you must provide a list of all of the possible choices as well
as an array of the correct answers (`all_answers` and `correct_answer(s)` respectively).

To add images to a question's question, answers, or hints, format the image path with `'![](<path/to/some/file.png>)'`

Once you have created the appropriate question model, add it to an exercise model with `<exercise-node>.add_question(<question>)`

* Running the Rice Cooker
Run `python -m ricecooker uploadchannel [-uv] "<path-to-py-file>" [--debug] [--resume] [[OPTIONS] ...]`
- -v (verbose) will print what the rice cooker is doing
- -u (update) will force the ricecooker to redownload all files
- --debug will send data to localhost if you have Kolibri Studio running locally
- --resume will resume your previous rice cooking session
- [OPTIONS] any additional keyword arguments you would like to pass to your construct_channel method


=======
History
=======

0.1.0 (2016-09-30)
------------------

* First release on PyPI.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ricecooker-0.3.5rc13.tar.gz (39.4 kB view details)

Uploaded Source

File details

Details for the file ricecooker-0.3.5rc13.tar.gz.

File metadata

File hashes

Hashes for ricecooker-0.3.5rc13.tar.gz
Algorithm Hash digest
SHA256 5dfe8f2423cf8e3df43dd9172872155a82ba9eccea57addef86ada1082651c67
MD5 a9512aab89cda7ed5f256474647575e2
BLAKE2b-256 c0136bd54a350697956bde76aee5ee11356dfe298e8cf6f51031ac199e2e2212

See more details on using hashes here.

Provenance

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