A short description for your project.
Project description
This project is a Python parser for the Aiken question format used in Moodle. Aiken is a very simple format to represent multiple choice questions (https://docs.moodle.org/24/en/Aiken_format) It accept two very similar syntaxes:
What is the correct answer to this question? A. Is it this one? B. Maybe this answer? C. Possibly this one? D. Must be this one! ANSWER: D
And this:
Which LMS has the most quiz import formats? A) Moodle B) ATutor C) Claroline D) Blackboard E) WebCT F) Ilias ANSWER: A
Usage
The aiken module simply expose the load and dump functions that respectively parse a question file and convert a parsed question object back to code. Let us parse a question string:
>>> import aiken >>> question = aiken.load(""" ... Is this a valid Aiken Question? ... A. Yes ... B. No ... ANSWER: A ... """) >>> question.options ['Yes', 'No']
Now, we make some changes and convert it back to a string of code:
>>> question.options.append('Who knows?') >>> print(aiken.dump(question)) Is this a valid Aiken Question? A. Yes B. No C. Who knows? ANSWER: A
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
aiken-0.1.0.tar.gz
(4.6 kB
view details)
File details
Details for the file aiken-0.1.0.tar.gz
.
File metadata
- Download URL: aiken-0.1.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a348b068a9b78fbb9c0c8365fcbfdc4f95ba4f6107badcb8121746d6dd603ea |
|
MD5 | 48fdb665b6877948558f48c97f71a044 |
|
BLAKE2b-256 | d98900f369882d73259863fdde10c455caae37875859679c01e68bcfff0ffa71 |