-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
77 lines (77 loc) · 1.97 KB
/
config.json
File metadata and controls
77 lines (77 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"course": {
"title": "Computer Science",
"school": "Mergington High School",
"description": "Introduction to programming and computer science"
},
"assignments": [
{
"id": "python-basics",
"title": "Python Basics",
"description": "Variables, data types, conditionals, and loops",
"path": "assignments/python-basics",
"dueDate": "2025-12-07",
"attachments": [
{
"name": "Starter Code",
"file": "starter-code.py",
"type": "python"
}
]
},
{
"id": "games-in-python",
"title": "Games in Python",
"description": "Creating games using Python",
"path": "assignments/games-in-python",
"dueDate": "2025-12-22"
},
{
"id": "python-classes",
"title": "Python Classes",
"description": "Defining and using classes in Python",
"path": "assignments/python-classes",
"dueDate": "2026-01-01",
"attachments": [
{
"name": "Starter Code",
"file": "starter-code.py",
"type": "python"
}
]
},
{
"id": "data-analysis",
"title": "Data Analysis",
"description": "Basics of data analysis: loading, exploring, and visualizing data in Python.",
"path": "assignments/data-analysis",
"dueDate": "2026-02-04",
"attachments": [
{
"name": "Starter Code",
"file": "starter-code.py",
"type": "python"
},
{
"name": "Sample Dataset",
"file": "data.csv",
"type": "csv"
}
]
},
{
"id": "rest-api-fastapi",
"title": "REST API with FastAPI",
"description": "Building RESTful APIs using the FastAPI framework",
"path": "assignments/rest-api-fastapi",
"dueDate": "2026-01-28",
"attachments": [
{
"name": "Starter Code",
"file": "starter-code.py",
"type": "python"
}
]
}
]
}