-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.py
228 lines (210 loc) · 6.54 KB
/
data.py
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# make this mongo db in future
Python = {
'courseName': 'Python', #used on search results & link route
'name': 'Python Programming',
'logo': 'python-plain',
'difficulty': 'Beginner',
'duration': '3 weeks',
'rating': '4.7',
'price': 'Free',
'imageName': 'python/python-original.svg',
'description': 'Learn the basics of Python programming language for building robust applications.'
}
ReactJS = {
'courseName': 'ReactJS',
'name': 'ReactJS',
'logo' : 'react-original',
'difficulty': 'Intermediate',
'duration': '1 week',
'rating': '5.0',
'price': 'Free',
'imageName': 'react/react-original.svg',
'description': 'ReactJS is a powerful, efficient and user-friendly JavaScript library for building interactive interfaces.'
}
ruby = {
'courseName': 'Ruby',
'name': 'Ruby Programming',
'logo': 'ruby-plain',
'difficulty': 'Advance',
'duration': '2 weeks',
'rating': '4.5',
'price': 'Free',
'imageName': 'ruby/ruby-original.svg',
'description': 'Learn the basics of Ruby programming language for building robust applications.'
}
ML = {
'courseName': 'ML+AI',
'name': 'Machine Learning',
'logo': 'python-plain',
'difficulty' : 'Advance',
'duration': '3 week',
'rating': '4.9',
'price': 'Free',
'imageName': 'python/python-original.svg',
'description': 'Training computers to learn from data, improving performance without explicit instructions.'
}
JavaScript = {
'courseName': 'JavaScript',
'name': 'JavaScript Fundamentals',
'logo': 'javascript-plain',
'difficulty': 'Beginner',
'duration': '4 weeks',
'rating': '4.7',
'price': 'Free',
'imageName': 'javascript/javascript-original.svg',
'description': 'Learn the basics of JavaScript programming for front-end and back-end development.'
}
Java = {
'courseName': 'Java',
'name': 'Java Programming',
'logo': 'java-plain',
'difficulty': 'Intermediate',
'duration': '5 weeks',
'rating': '4.8',
'price': 'Free',
'imageName': 'java/java-original.svg',
'description': 'Get started with Java and object-oriented programming for building robust applications.'
}
cplusplus = {
'courseName': 'C++',
'name': 'C++ Essentials',
'logo': 'cplusplus-plain',
'difficulty': 'Beginner',
'duration': '2 weeks',
'rating': '4.5',
'price': 'Free',
'imageName': 'cplusplus/cplusplus-original.svg',
'description': 'Introduction to C++ programming language and its applications in various domains.'
}
Django = {
'courseName': 'Django',
'name': 'Django Framework',
'logo': 'django-plain',
'difficulty': 'Intermediate',
'duration': '3 weeks',
'rating': '4.6',
'price': 'Free',
'imageName': 'django/django-plain.svg',
'description': 'Learn the basics of Django framework for building robust web applications.'
}
HTML = {
'courseName': 'HTML',
'name': 'HTML/CSS Fundamentals',
'logo': 'html5-plain',
'difficulty': 'Beginner',
'duration': '3 Days',
'rating': '4.5',
'price': 'Free',
'imageName': 'html5/html5-original.svg',
'description': 'Learn the basics of HTML and CSS for front-end web development.'
}
Angular = {
'courseName': 'Angular',
'name' : 'Angular Devloper',
'logo' : 'angularjs-plain',
'difficulty' : 'Intermediate',
'duration': '3 Days',
'rating': '4.5',
'price': 'Free',
'imageName': 'angularjs/angularjs-original.svg',
'description': 'Learn the basics of Angular for front-end web development.'
}
PHP = {
'courseName': 'PHP',
'name': 'PHP Programming',
'logo': 'php-plain',
'difficulty': 'Intermediate',
'duration': '4 weeks',
'rating': '4.6',
'price': 'Free',
'imageName': '/php/php-original.svg',
'description': 'Learn PHP scripting language for web development and server-side scripting.'
}
Swift = {
'courseName': 'Swift',
'name': 'Swift Programming',
'logo': 'swift-plain',
'difficulty': 'Beginner',
'duration': '2 weeks',
'rating': '4.8',
'price': 'Free',
'imageName': 'swift/swift-original.svg',
'description': 'Get started with Swift programming language for iOS and macOS app development.'
}
SQL = {
'courseName': 'SQL',
'name': 'SQL Fundamentals',
'logo': 'mysql-plain',
'difficulty': 'Beginner',
'duration': '3 weeks',
'rating': '4.7',
'price': 'Free',
'imageName': 'mysql/mysql-original.svg',
'description': 'Learn the basics of SQL for managing and querying databases.'
}
NodeJS = {
'courseName': 'NodeJS',
'name': 'Node.js Development',
'logo': 'nodejs-plain',
'difficulty': 'Intermediate',
'duration': '2 weeks',
'rating': '4.9',
'price': 'Free',
'imageName': 'nodejs/nodejs-original.svg',
'description': 'Build scalable network applications using Node.js runtime environment.'
}
Rails = {
'courseName': 'RubyOnRails',
'name': 'Ruby on Rails Development',
'logo': 'rails-plain',
'difficulty': 'Intermediate',
'duration': '4 weeks',
'rating': '4.5',
'price': 'Free',
'imageName': 'rails/rails-original-wordmark.svg',
'description': 'Learn web development with the Ruby on Rails framework.'
}
VueJS = {
'courseName': 'VueJS',
'name': 'Vue.js Essentials',
'logo': 'vuejs-plain',
'difficulty': 'Beginner',
'duration': '1 week',
'rating': '4.7',
'price': 'Free',
'imageName': 'vuejs/vuejs-original.svg',
'description': 'Introduction to Vue.js for building interactive user interfaces.'
}
DataScience = {
'courseName': 'DataScience',
'name': 'Data Science with Python',
'logo': 'python-plain',
'difficulty': 'Intermediate',
'duration': '6 weeks',
'rating': '4.8',
'price': 'Free',
'imageName': 'python/python-original.svg',
'description': 'Explore data analysis and machine learning using Python.'
}
Android = {
'courseName': 'Android',
'name': 'Android App Development',
'logo': 'android-plain',
'difficulty': 'Intermediate',
'duration': '5 weeks',
'rating': '4.7',
'price': 'Free',
'imageName': 'android/android-original.svg',
'description': 'Build mobile apps for the Android platform using Java and Android Studio.'
}
Cybersecurity = {
'courseName': 'Cybersecurity',
'name': 'Cybersecurity Fundamentals',
'logo': 'security-plain',
'difficulty': 'Beginner',
'duration': '2 weeks',
'rating': '4.5',
'price': 'Free',
'imageName': 'javascript/javascript-original.svg',
'description': 'Introduction to cybersecurity principles and practices.'
}