DEV Community

Cover image for Learn Django in an easy way
Shoukrey Tom
Shoukrey Tom

Posted on • Updated on

Learn Django in an easy way

If you want to learn basics of django in just a week, here are some steps to help you: (you must have a good knowledge in python)

  1. learn how to install django from here.
  2. know how to create django projects django-admin startproject my_project.
  3. learn the structure of django project (check it here), and the use of manage.py file.
  4. learn how to route urls
  5. learn how to render templates
  6. learn about models
  7. learn how to add static files (css, images, js, ...ect) to the project
  8. learn how to deal with admin page ( it's already setup for you just know how to create a superuser; and how to add contents (models) to it )
  9. learn about sessions (cookies)

I just learned it in lees than a week.
Here is a youtube channel where I learned from Corey Schafer

Top comments (1)

Collapse
 
merichard123 profile image
Richard

I'm just getting to learning Django. This was really useful. Thankyou