rivapereira123 commited on
Commit
93a5bdf
·
verified ·
1 Parent(s): 5efa2f0

Update utils/constants.py

Browse files
Files changed (1) hide show
  1. utils/constants.py +38 -0
utils/constants.py CHANGED
@@ -11,3 +11,41 @@ completed_steps_box = set ()
11
  visual_steps = []
12
  last_reset = datetime.date.today()
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  visual_steps = []
12
  last_reset = datetime.date.today()
13
 
14
+
15
+ course_suggestions = {
16
+ "data analyst": [
17
+ ("Google Data Analytics Professional Certificate", "https://www.coursera.org/professional-certificates/google-data-analytics"),
18
+ ("IBM Data Analyst Professional Certificate", "https://www.coursera.org/professional-certificates/ibm-data-analyst"),
19
+ ("Introduction to Data Analytics by IBM", "https://www.coursera.org/learn/introduction-to-data-analytics"),
20
+ ("Excel Basics for Data Analysis by IBM", "https://www.coursera.org/learn/excel-basics-data-analysis"),
21
+ ("Data Analysis using Excel and Tableau by EntryLevel", "https://www.entrylevel.net/post/beginner-data-analysis-courses-by-platform-with-certificates")
22
+ ],
23
+ "ux designer": [
24
+ ("Google UX Design Professional Certificate", "https://www.coursera.org/professional-certificates/google-ux-design"),
25
+ ("Introduction to UI and UX Design by Codecademy", "https://www.codecademy.com/learn/intro-to-ui-ux"),
26
+ ("UX Design Institute's Introduction to UX Design", "https://www.uxdesigninstitute.com/blog/best-free-ux-design-courses-in-2022/"),
27
+ ("Introduction to User Experience Design by Georgia Tech", "https://www.coursera.org/learn/user-experience-design"),
28
+ ("CareerFoundry UX Design Program", "https://careerfoundry.com/en/blog/ux-design/ux-design-course-online/")
29
+ ],
30
+ "software engineer": [
31
+ ("Introduction to Software Engineering by IBM", "https://www.coursera.org/learn/introduction-to-software-engineering"),
32
+ ("Python for Everybody Specialization by University of Michigan", "https://www.coursera.org/specializations/python"),
33
+ ("Full-Stack Engineer Career Path by Codecademy", "https://www.codecademy.com/learn/paths/full-stack-engineer-career-path"),
34
+ ("Software Engineering for Beginners by Udemy", "https://www.udemy.com/course/software-engineering-for-beginners/"),
35
+ ("Software Engineering Bootcamp by TripleTen", "https://tripleten.com/software-engineer/")
36
+ ],
37
+ "digital marketing": [
38
+ ("Fundamentals of Digital Marketing by Google Digital Garage", "https://learndigital.withgoogle.com/digitalgarage/course/digital-marketing"),
39
+ ("Digital Marketing Specialization by Coursera", "https://www.coursera.org/specializations/digital-marketing"),
40
+ ("The Complete Digital Marketing Course by Udemy", "https://www.udemy.com/course/learn-digital-marketing-course/"),
41
+ ("Digital Marketing Fundamentals by University of Edinburgh on edX", "https://www.edx.org/course/digital-marketing-fundamentals"),
42
+ ("Digital Marketing Course by CareerFoundry", "https://careerfoundry.com/en/blog/digital-marketing/online-digital-marketing-courses/")
43
+ ],
44
+ "project manager": [
45
+ ("Google Project Management Professional Certificate", "https://www.coursera.org/professional-certificates/google-project-management"),
46
+ ("Foundations of Project Management by Coursera", "https://www.coursera.org/learn/project-management-foundations"),
47
+ ("Project Management Basics by PMI", "https://www.pmi.org/learning/free-online-courses"),
48
+ ("Introduction to Project Management by University of Adelaide on edX", "https://www.edx.org/course/introduction-to-project-management"),
49
+ ("Project Management Principles and Practices Specialization by Coursera", "https://www.coursera.org/specializations/project-management")
50
+ ]
51
+ }