forked from ruthbak/STEMPath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.py
More file actions
184 lines (183 loc) · 6.79 KB
/
Copy pathdata.py
File metadata and controls
184 lines (183 loc) · 6.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
skills = [
"Python", "SQL", "Statistics", "Machine Learning",
"Data Visualization", "Networking", "Linux",
"Security Basics", "Cloud", "Git", "APIs", "TensorFlow"
]
courses = [
{
"name": "Python for Everybody",
"teaches": ["Python"],
"prerequisites": [],
"time": 30,
"difficulty": 1,
"cost": 0,
"provider": "Coursera",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/beginner-python/",
"youtube": "https://www.youtube.com/results?search_query=python+for+beginners+full+course"
},
{
"name": "SQL Fundamentals",
"teaches": ["SQL"],
"prerequisites": [],
"time": 20,
"difficulty": 1,
"cost": 0,
"provider": "edX",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/get-started-querying-with-transact-sql/",
"youtube": "https://www.youtube.com/results?search_query=sql+fundamentals+full+course"
},
{
"name": "Intro to Statistics",
"teaches": ["Statistics"],
"prerequisites": ["Python"],
"time": 40,
"difficulty": 2,
"cost": 0,
"provider": "edX",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/data-science-know-your-data/",
"youtube": "https://www.youtube.com/results?search_query=statistics+for+data+science+full+course"
},
{
"name": "Data Analysis with Python",
"teaches": ["Data Visualization"],
"prerequisites": ["Python", "SQL"],
"time": 40,
"difficulty": 2,
"cost": 0,
"provider": "Coursera",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/visualize-data-power-bi/",
"youtube": "https://www.youtube.com/results?search_query=data+analysis+python+pandas+matplotlib+full+course"
},
{
"name": "ML Basics",
"teaches": ["Machine Learning"],
"prerequisites": ["Python", "Statistics"],
"time": 60,
"difficulty": 3,
"cost": 49,
"provider": "edX",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/introduction-machine-learning/",
"youtube": "https://www.youtube.com/results?search_query=machine+learning+full+course+beginners"
},
{
"name": "TensorFlow Fundamentals",
"teaches": ["TensorFlow"],
"prerequisites": ["Machine Learning"],
"time": 50,
"difficulty": 3,
"cost": 0,
"provider": "Google",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/introduction-machine-learning/",
"youtube": "https://www.youtube.com/results?search_query=tensorflow+full+course+beginners"
},
{
"name": "Networking Fundamentals",
"teaches": ["Networking"],
"prerequisites": [],
"time": 35,
"difficulty": 2,
"cost": 0,
"provider": "Cisco NetAcad",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/implement-windows-server-networking/",
"youtube": "https://www.youtube.com/results?search_query=networking+fundamentals+full+course"
},
{
"name": "Linux Command Line Basics",
"teaches": ["Linux"],
"prerequisites": [],
"time": 15,
"difficulty": 1,
"cost": 0,
"provider": "edX",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/azure-linux/",
"youtube": "https://www.youtube.com/results?search_query=linux+command+line+full+course+beginners"
},
{
"name": "CompTIA Security+ Prep",
"teaches": ["Security Basics"],
"prerequisites": ["Networking"],
"time": 60,
"difficulty": 3,
"cost": 30,
"provider": "CompTIA",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/security-compliance-identity-fundamentals/",
"youtube": "https://www.youtube.com/results?search_query=comptia+security+plus+full+course"
},
{
"name": "AWS Cloud Practitioner",
"teaches": ["Cloud"],
"prerequisites": ["Networking"],
"time": 30,
"difficulty": 2,
"cost": 0,
"provider": "AWS / Microsoft Learn",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/az-900-describe-cloud-concepts/",
"youtube": "https://www.youtube.com/results?search_query=aws+cloud+practitioner+full+course"
},
{
"name": "Git & GitHub for Beginners",
"teaches": ["Git"],
"prerequisites": [],
"time": 10,
"difficulty": 1,
"cost": 0,
"provider": "GitHub",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/intro-to-vc-git/",
"youtube": "https://www.youtube.com/results?search_query=git+github+full+course+beginners"
},
{
"name": "REST API Development",
"teaches": ["APIs"],
"prerequisites": ["Python"],
"time": 25,
"difficulty": 2,
"cost": 0,
"provider": "edX",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/build-serverless-full-stack-apps-azure/",
"youtube": "https://www.youtube.com/results?search_query=rest+api+development+python+full+course"
},
{
"name": "HTML & CSS Fundamentals",
"teaches": ["CSS", "HTML"],
"prerequisites": [],
"time": 15,
"difficulty": 1,
"cost": 0,
"provider": "MDN / freeCodeCamp",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/web-development-101/",
"youtube": "https://www.youtube.com/results?search_query=html+css+full+course+beginners"
},
{
"name": "JavaScript Basics",
"teaches": ["JavaScript"],
"prerequisites": ["HTML", "CSS"],
"time": 30,
"difficulty": 2,
"cost": 0,
"provider": "freeCodeCamp",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/web-development-101/",
"youtube": "https://www.youtube.com/results?search_query=javascript+full+course+beginners"
},
{
"name": "Java Programming Fundamentals",
"teaches": ["Java"],
"prerequisites": [],
"time": 40,
"difficulty": 2,
"cost": 0,
"provider": "edX",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/java-se-fundamentals/",
"youtube": "https://www.youtube.com/results?search_query=java+programming+full+course+beginners"
},
{
"name": "Statistics for Data Science",
"teaches": ["Statistics"],
"prerequisites": [],
"time": 35,
"difficulty": 2,
"cost": 0,
"provider": "Coursera",
"ms_learn": "https://learn.microsoft.com/en-us/training/paths/data-science-know-your-data/",
"youtube": "https://www.youtube.com/results?search_query=statistics+for+data+science+beginners"
},
]