Python Induction
Python Induction
Expected Learnings
● Classes
● Objects
● Variables
○ Data types
● Numbers
● String
● List
● Tuple
● Dictionary
● Decision Making
● Loops
● Methods
● Use of self operator
● File I/O
● Exceptions
● Iterators
● Regular Expressions
● Models
● Views
● ORM
● Middleware
● REST APIs
● CRUD operations
● Object oriented concepts
● Inheritance
● Abstraction
● Polymorphism
Study Material
Day 1
Udemy Courses
● https://www.udemy.com/course/complete-python-bootcamp/learn/lecture/3421822#overview
Day 2
● Django Models
● Introduction to models
● Field types
● Indexes
● Meta options
● Model class
○ https://docs.djangoproject.com/en/3.2/topics/db/models/
● Django Migrations
● https://docs.djangoproject.com/en/3.2/topics/migrations/
Day 3
Day 4
● URL dispatcher
○ https://docs.djangoproject.com/en/3.2/topics/http/urls/
● Django Forms
● https://docs.djangoproject.com/en/3.2/ref/forms/
● https://tutorial.djangogirls.org/en/django_forms/
● Django templates
○ https://www.javatpoint.com/django-template
Day 5
● Django Logging
https://docs.djangoproject.com/en/3.2/topics/logging/
https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/
Day 6
Django Rest framework
https://docs.djangoproject.com/en/3.2/topics/db/queries/
● Middlewares
https://docs.djangoproject.com/en/3.2/topics/http/middleware/
Day 7
● Basic Restful concepts
https://restful.io/an-introduction-to-api-s-cee90581ca1b
https://dzone.com/articles/5-basic-rest-api-design-guidelines
https://mlsdev.com/blog/81-a-b3eginner-s-tutorial-for-understanding-restful-api
● HTTP:
https://docs.google.com/document/d/
1Rb2W4LL9xDAkXjs3Vo4iqLeggWm__wGjFEeV2wS7zBk/edit?usp=sharing
Day 8
● Getting started to create a Django rest -framework project:
https://medium.com/backticks-tildes/lets-build-an-api-with-django-rest-framework-
32fcf40231e5
https://drive.google.com/file/d/11doSWjO4O3eMjjU-AMJqBdiIn1Yoeojz/view?usp=sharing
Day 9
Key concepts and understandings required for Django rest-framework:
● Creating models
● Endpoints and URLs
● Creating views for the URLs
https://docs.djangoproject.com/en/3.2/topics/class-based-views/
https://docs.djangoproject.com/en/3.2/topics/http/urls/
Day 10
● Relational Database
https://docs.google.com/document/d/1SEvwq7mQBYAzOIZCo-
0DmSVSVUmP0X46nZTLuN_kZgY/edit#
Day 11
● Serializer in DRF
https://www.django-rest-framework.org/api-guide/serializers/
Day 12
● Serializer fields in DRF:
https://www.django-rest-framework.org/api-guide/fields/
QUIZ
Program to convert a list into a nested dictionary of keys
Program to check multiple keys exists in a dictionary
Program to create a dictionary from two lists without losing duplicate values