-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathconfig.json
More file actions
63 lines (63 loc) · 1.59 KB
/
config.json
File metadata and controls
63 lines (63 loc) · 1.59 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
{
"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-07-15",
"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-09-01"
},
{
"id": "python-classes",
"title": "Python Classes",
"description": "Defining and using classes in Python",
"path": "assignments/python-classes",
"dueDate": "2025-08-05",
"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": "2025-07-29",
"attachments": [
{
"name": "Starter Code",
"file": "starter-code.py",
"type": "python"
},
{
"name": "Sample Dataset",
"file": "data.csv",
"type": "csv"
}
]
}
]
}