This comprises of data on courses assisting a noesis on technical subjects
- Fork this repository and edit as per the following rules.
- Once the infomration is added and is in a proper structured format, create a pull request.
- Wait for it to get merged !
- platform name should be in lowercase
- id is the number assigned by your mentor
- module_number should be an integer
- if modules are unavailable, videos, chapters etc can be added
- free_courses - can have either 'yes' or 'no' against them
- difficulty can be either one of three options- 'beginner' , 'intermediate' or 'expert'.
- certification can be either one of three options- 'free' (for free courses with free certifications), 'paid' (either for paid courses or free courses with paid certifications ) and 'none'.
- Make sure that the courses you're entering into the database don't already exist there !
You can take the reference from below example and structure your information similar to that.
[
{
"id" : 1,
"platform" : "coursera",
"free_course" : "yes",
"course_name" : "Basic Python",
"link" : "https://coursera.com/Basic-python",
"difficulty" : "beginner",
"module_number" : 6,
"certification" : "free"
},
{
"id" : 2,
"platform" : "coursera",
"free_course" : "yes",
"course_name" : "Basic C",
"link" : "https://coursera.com/Basic-C",
"difficulty" : "beginner",
"module_number" : 7,
"certification" : "paid"
}
]