DEV Community

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

Posted on • Edited on

3 1

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

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

Top comments (1)

Collapse
 
merichard123 profile image
Richard

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

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay