hey Caleb, i first found your channel 4 years ago when i was a freshman taking an introductory programming in C class, fast forward to now & i'm ready to join the industry as a software engineer. wanted to say many thanks as your Intro to C tutorial really helped solidify my foundations & learning concepts beyond wishing you best of luck with your TH-cam channel! will be following this Django course!
I learnt Python and Django back in 2019 as my first programming language and framework but didn't use them for any production project. Now I'm working a project requires a rest api. This video has been helpful to remind myself of Django and I'm going to watch your Django Rest Framework video next. Awesome video, you are a great instructor.
If someone cannot activate the virtual environment on windows because running scripts is disabled on your system, you might want to change the execution policy. To do that open Windows Powershell as an administrator and type in: "set-executionpolicy remotesigned" and then set it to: "A" Hope this helped :)
I am impressed with crystal clear explanation. No confusion at all at any place. Keep it up. Looking forward for more complex projects. You can be a Django Pioneer. Good Luck.
40 mins into it and has been the most clarifying tutorial I've seen so far, covered a lot of details that was still confusing to me.. thank you so much!
I was really hoping for "Hello there" and then the other view being "General Kenobi" but hey, can't always get what you want. Great video, always wondered how Django worked!
I'm learning the advance python course on your channel now, would you create course of ML in python, with the necessary mathematics, for projects and stuff ML is really helpful and I want to make a project with it, a crash course or a roadmap for learning ML with python with sources would be awesome too
Thanks for this tutorial , Just a comment related to SQLMIGRATE (min 38:28 ) in my version (using Winsucks 10) I had to skip .py from the name of the file in order to be able to execute that intruction
(FREE) Early access course notes - calcur.tech/backend-notes Timestamps: 00:00 - Introduction 01:14 - Check Python version 02:40 - Create a virtual environment 04:02 - Activate a virtual environment 04:49 - Install a package 05:29 - Deactivate a virtual environment 06:54 - Create a Django project 08:46 - Git and Django 12:22 - Upload project to GitHub 13:31 - Model view template explained 15:10 - Create our first view 19:54 - Create our first template 24:13 - Working with complex data 26:30 - More complex template 30:47 - Intro to models and migrations 32:35 - View the admin site 34:34 - ORM explained 35:48 - Create our first Model 37:32 - Create a migration 39:42 - Add table to admin site 41:21 - Override __str__() 42:18 - Working with real data 45:07 - parameterized URLs 48:00 - Create dynamic links 49:12 - Create a form 59:15 - Delete data 01:01:58 - 404 Links: Get the code - github.com/CalebCurry/youtube-django-course environment setup - th-cam.com/video/kz4gbWNO1cw/w-d-xo.html git-scm.com/ www.toptal.com/developers/gitignore/api/django docs.djangoproject.com/en/4.0/intro/tutorial03/
hello Caleb, what vs code extension do you use to auto complete and suggest 3rd party libraries like in the timestamp below, there is a prediction from django.http import Http404 th-cam.com/video/EuBQU_miReM/w-d-xo.html
hey Caleb, i first found your channel 4 years ago when i was a freshman taking an introductory programming in C class, fast forward to now & i'm ready to join the industry as a software engineer. wanted to say many thanks as your Intro to C tutorial really helped solidify my foundations & learning concepts beyond
wishing you best of luck with your TH-cam channel! will be following this Django course!
I learnt Python and Django back in 2019 as my first programming language and framework but didn't use them for any production project. Now I'm working a project requires a rest api. This video has been helpful to remind myself of Django and I'm going to watch your Django Rest Framework video next.
Awesome video, you are a great instructor.
If someone cannot activate the virtual environment on windows because running scripts is disabled on your system, you might want to change the execution policy. To do that open Windows Powershell as an administrator and type in: "set-executionpolicy remotesigned" and then set it to: "A"
Hope this helped :)
I am impressed with crystal clear explanation. No confusion at all at any place. Keep it up. Looking forward for more complex projects. You can be a Django Pioneer. Good Luck.
40 mins into it and has been the most clarifying tutorial I've seen so far, covered a lot of details that was still confusing to me.. thank you so much!
This is one of the best Django courses for beginner that I've watched. Well done!!
I learnt in 1hour stuff i was struggling to understand through many videoes ! easy and concise . than you
this video is freaking amazing
I was really hoping for "Hello there" and then the other view being "General Kenobi" but hey, can't always get what you want. Great video, always wondered how Django worked!
Finally figured out what a virtual environment is. 😂 Thanks Caleb!
One thing I like about this guy is: he enjoy what he's doing, cool man! 😎
You explain everything very short, yet effectively. This is a great tutorial. Thank you!👍🏻👍🏻
I've always found your tutorials very easy to watch and understand ✊
absolute gem of a crash cource
Thats the best django tutorial on youtube!!!!!
Made a unusaul bug while creating the data variable containing movie list dictionaries, causing problem in template
Very clear explanation..worth the time
I'm learning the advance python course on your channel now, would you create course of ML in python, with the necessary mathematics,
for projects and stuff ML is really helpful and I want to make a project with it, a crash course or a roadmap for learning ML with python with sources would be awesome too
Thank you Caleb for free courses 😍😍
This is a great resource! Thank you for this helpful lesson.
This has been incredibly useful. Thank you so much!
Dude, you are the best. Thank you!
You are a great teacher thanks!
I tought it would be nice if you could do a tutorial for creating c libraries in vs or something like that.
1k(th) like, Thanks for this tutorial Caleb
Thanks for this tutorial , Just a comment related to SQLMIGRATE (min 38:28 ) in my version (using Winsucks 10) I had to skip .py from the name of the file in order to be able to execute that intruction
very very helpful thank you so much!
You're awesome Caleb
This was great, thank you so much!
Thank you for the video.
Can you please add some other concepts like use of signals.py and utils.py file ?
Great course. Very helpful.
is there Html,css,js tutorials?
Can you please tell what should be the next steps after this tutorial
no.
This is fantastic.
Thank you so much!
For a total beginner its pretty hard to understand. Do u have videos where u aim on newbies?
Yes! Look up my Python all-in-one for beginners
Thank you!
I love this tutorial
why am I finding this channel late? 😠
Solid tips!
Thank you!
18:48 my local server doesn't work instead the following error if reported "AttributeError: module 'movies.views' has no attribute 'movies' "
The csrf token didn’t work for me, any solution?
It worked after I reload a few times of the page😅
Thank you.
And here all these years I thought Django was just a spaghetti cowboy with a chain gun.
I like this
Let's gooooo
22:32
Jaws 1975
This lesson needs to be updated visual studio is upgraded and it looks completely different
That's not visual studio buddy, thats visual studio CODE
The
(FREE) Early access course notes - calcur.tech/backend-notes
Timestamps:
00:00 - Introduction
01:14 - Check Python version
02:40 - Create a virtual environment
04:02 - Activate a virtual environment
04:49 - Install a package
05:29 - Deactivate a virtual environment
06:54 - Create a Django project
08:46 - Git and Django
12:22 - Upload project to GitHub
13:31 - Model view template explained
15:10 - Create our first view
19:54 - Create our first template
24:13 - Working with complex data
26:30 - More complex template
30:47 - Intro to models and migrations
32:35 - View the admin site
34:34 - ORM explained
35:48 - Create our first Model
37:32 - Create a migration
39:42 - Add table to admin site
41:21 - Override __str__()
42:18 - Working with real data
45:07 - parameterized URLs
48:00 - Create dynamic links
49:12 - Create a form
59:15 - Delete data
01:01:58 - 404
Links:
Get the code - github.com/CalebCurry/youtube-django-course
environment setup - th-cam.com/video/kz4gbWNO1cw/w-d-xo.html
git-scm.com/
www.toptal.com/developers/gitignore/api/django
docs.djangoproject.com/en/4.0/intro/tutorial03/
(FREE) Early access course notes - calcur.tech/backend-notes
Links:
th-cam.com/video/kz4gbWNO1cw/w-d-xo.html
git-scm.com/
www.toptal.com/developers/gitignore/api/django
github.com/CalebCurry/youtube-django-course
docs.djangoproject.com/en/4.0/intro/tutorial03/
hello Caleb, what vs code extension do you use to auto complete and suggest 3rd party libraries like in the timestamp below, there is a prediction from django.http import Http404
th-cam.com/video/EuBQU_miReM/w-d-xo.html
Thank you