FD900's picture
Create submit.py
5932c3c verified
raw
history blame
479 Bytes
import requests
GAIA_API = "https://gaia-course-api.spacelab.dev"
def submit_answers(username: str, code_link: str, answers: list):
payload = {
"username": username,
"space": code_link,
"answers": answers,
}
response = requests.post(f"{GAIA_API}/submit", json=payload)
if response.status_code == 200:
return "✅ Submission successful!"
else:
return f"❌ Submission failed: {response.status_code} - {response.text}"