README.md > questionnaire_import.md
Loads some quizzes from a sample list in the program :
- openquizzdb_50.json
- openquizzdb_86.json
- openquizzdb_241.json
- openquizzdb_90.json
and converts them into a specific json format before to save them into the json_questionnaires folder
Those quizzes were initially downloaded from http://www.openquizzdb.org/ or https://www.kiwime.com/oqdb/files/ but the
API which allowed to do it for free has been disconnected and is no longer available.
Those quizzes have thus been transferred on www.codeavecjonathan.com to be manipulated through this exercise.
{
"fournisseur" : "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
"rédacteur" : "Phillippe Bresoux",
"difficulté" : "3/5",
"version" : 1,
"mise-à-jour" : "2022-04-29",
"catégorie-nom-slogan" :
{
"fr" :{
"catégorie" : "Animaux"
"nom" : "Nos amis les chats"
"slogan" : "Adoptez un nouveau compagnon"
},
"en":{},
"es":{},
"it":{},
"de":{},
"nl":{},
}
"quizz" :
{
"fr" :
{
"débutant" : [10 items
0 : {
"id": 1,
"question": "À quelle classe d'animaux vertébrés appartient le chat ?",
"propositions": [
"Mammifères",
"Reptiles",
"Oiseaux",
"Poissons",
],
"réponse": "Mammifères",
"anecdote": "De nombreux mammifères élevés par l'homme jusqu'au XIXème siècle ...",
},
1: {},
...
10: {}
],
"confirmé" : [10 items],
"expert" : [10 items],
},
"en":{},
"es":{},
"it":{},
"de":{},
"nl":{},
}
}
Each json quiz has 3 categories of difficulty : débutant
, confirmé
or expert
[ beginner, advanced or expert ]
Each category includes 10 questions with 4 answer choices to be offered to the user.
The good answer can be found under the réponse
key.
python questionnaire_import.py
loads json quizzes and converts them to a new json format by creating one file per difficulty category.
{
"categorie" : "Animaux",
"titre" : "Les chats",
"questions": [ 20 items
0:{
"titre": "À quelle classe d'animaux vertébrés appartient le chat ?"
"choix":[
["Mammifères",true],
["Reptiles",false],
["Oiseaux",false],
["Poissons",false]
]
},
1:{},
...
20:{}
]
"difficulte" : "confirmé"
}
This file represents the second confirmé
difficulty and therefore contains the first 20 questions
The débutant
quiz contains only the first 10 questions and the expert
quiz contains the whole 30 questions
of the initial json file.
The keys catégorie
and nom
of catégorie-nom-slogan
in fr
, and the items of
the quizz
in fr
are kept and transcribed into the new json file.
These last ones are compiled to have 4 propositions with a boolean parameter
indicating if the answer is the good one.