This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample code to create a Gist via GitHub API (alternative method) | |
import requests | |
gist_data = { | |
"description": "Moodle Quiz - Sécurité Informatique (100 Questions)", | |
"public": True, | |
"files": { | |
"securite_informatique_quiz.xml": { | |
"content": "<?xml version='1.0'?><quiz>[...FULL 100 QUESTIONS...]</quiz>" | |
} |