Clear and concise. So many Django tutorials add fluff and muddy the waters when describing what to do when using Django. Arthur C. Clarke: "Any sufficiently advanced technology is indistinguishable from magic." This is simple and to the point, thanks.
@Gonfalon884 жыл бұрын
My god I had been searching on how to send an update to slack when someone posts a message. I put an api call under the model's class and could not figure out how to only make it call when the model was saved. It was actually making api calls every time I ran manage.py migrate lol. After two days of messing around in my code, placing the api call in defs and out of defs, in models and in views, etc etc.. this tutorial actually fixed it. Thank you so much!
@MrValVet Жыл бұрын
Hey JD, thank you for your awesome Django tutorials. For me, these are by far the best on YT.
@muhsinkhalif36215 жыл бұрын
Wow! thanks for the explaination other youtubers just glance over this signalling part(i think they just memorized it and not fully understand the underlying concept of send,receive signalling).
@maahad7673 жыл бұрын
me too.
@onelinkonelink16772 жыл бұрын
THANK YOU VERY VERY MUCH!!! . this is the best tutorial about Signals till now . the way how you go through documentation and then do an example is really really good. now it's much easier for me to read the docs next time :))
@FernandoPosserPinheiro6 жыл бұрын
Best django signals tutorial i ever see
@topsome60254 жыл бұрын
Best tutorial for signals so far! Excellent work sir, keep it up.
@maahad7673 жыл бұрын
I was struggling with this, and you made this easy for me. Thanks man.
@10yearsago843 жыл бұрын
Amazing Explanation. Really liked the video.
@shreyasambre2954 жыл бұрын
Nice explanation. I read the documentation but it was bouncers for me u cleared me the concept
@SanjayKumar_optimist2 жыл бұрын
Very much helpful, good explanation.
@sumit1802884 жыл бұрын
Which is the color theme in vs code you use ?
@theadrix923 жыл бұрын
You made it so easy. Thank you
@avanishgupta50405 жыл бұрын
I am really thankful to you sir for this video which covers all the basic concepts of signals .
@jonl3162 жыл бұрын
Such a great tutorial! Love what you are doing there and thanks so much.
@anisdhouieb99184 жыл бұрын
Hi, thank you for this video, which vscode extension do you use to get autocompletion with Django ???
@Shaunmcdonogh-shaunsurfing4 жыл бұрын
It’s GREAT how you explain the code. Grateful brother.
@codeevangelist4 жыл бұрын
Thank you for the tutorial. would like to create another one for us about how to send user notifications with Django signals? of if it is possible how to use signals with rest framework and Django channels
@FahmiEshaq4 жыл бұрын
Well explained. Thank you
@pratiksharma65224 жыл бұрын
which extensions of python you are using for django in vscode ?
@eesakamaldien19172 жыл бұрын
Thank you so much for this
@codeproduct99043 жыл бұрын
Thanks for your great effort, Matthew.
@oyatilloismoilov55403 жыл бұрын
Thank you so much bro✊
@chetty12122 жыл бұрын
great vide on signals thank you
@aaryacollections22114 жыл бұрын
This video was very helpful.
@mohamedabdelmoneim57213 жыл бұрын
thank you, This is awesome
@amitbaderia41944 жыл бұрын
Very well explained. Thanks a lot !
@spreadhysteria36504 жыл бұрын
Perfect, I am planning to make a log file of users activity in a .txt file.
@ameerhbaig4 жыл бұрын
Thanks a lot. You really helped me understand the basics of signals. They were certainly intimidating before this.
@thomasrackow81596 жыл бұрын
Again a great Django tutorial video. Thanks a lot.
@peterrusznak61652 жыл бұрын
yeah, great stuff. subscription earned.
@Kapone25963 жыл бұрын
Great tutorial.
@xyzmoral2625 жыл бұрын
Thanks a lot...You make it more easy to understand.
@letccc5 жыл бұрын
Which VScode extension you are using for Django intellisense ?
@MVTN4 жыл бұрын
Thanks for the video, it really helped me out!
@panagiotisgoulas85394 жыл бұрын
Thank you was a very confusing topic imo that you explained thoroughly.
@geniusxbyofejiroagbaduta86659 ай бұрын
Thank you sir
@mohammadsamir27135 жыл бұрын
Thanks a lot for your efforts
@michelkant5 жыл бұрын
Big like for the very clear explanation!
@Unknown-ck7fi9 ай бұрын
to the point , thanks
@maxitorres74 жыл бұрын
Thanks a lot man! realy usefull
@yoga_with_atharva4 жыл бұрын
nice explanation👌
@alimurtuza3474 жыл бұрын
i am learning from different source in that it make another signals file and define the signal there, while i am doing the same the content you provided in an another file signals.py but cannot connect my signals means it doesnot notify me when the request is finished
@mr2mato5 жыл бұрын
We only can use django signals in models.py, or we can use it in view.py too?
@nomanabid71135 жыл бұрын
you can separatly make signals.py where models and views exist. put the functionality there in signals.py. and do the necessary importing stuff like importing POST model from models.py and doing some functionality in signal.py
@NMD1373072 жыл бұрын
16:43 custom signals
@dannyhd83012 жыл бұрын
absolutely gr8
@AxmedShiimax4 жыл бұрын
Something still in my head, is it necessary to use signals while I want to create a user with profile or can I use after user creation form is a valid and saved then save with its profile? Ur teaching style is awesome. Thank you
@tochimclaren4 жыл бұрын
The best practice will be to set a lot of the profile forms to blank listen to User model signal, create the user object and redirect to user Profile form to update it with information if that's what you are asking about.
@Brun69M5 жыл бұрын
why is the Post the sender of request_counter_signal ?
@mysteriousr71973 жыл бұрын
In my project i need something like that..if i save "A" model. Then "A" models imagefield will be automatically added to the "B" models imagefield..can i do it using signal?
@maahad7673 жыл бұрын
Yes. use something like this => "AnotherModel.object.imagefield = instance.imagefield"
@Zzzzzzzzzzzzzzzzzzzzr5 жыл бұрын
can signals be used on the frontend to instead send the message to the frontend instead of the terminal? Thanks
@nomanabid71135 жыл бұрын
yes
@tanimsk3 жыл бұрын
thanks!!!!
@lowkeygaming47165 жыл бұрын
Hi. Do you have an idea why I'm getting an error with AUTH_USER_MODEL declaration when I register the signals module that I made in the AppConfig? It says that the model that I set is not properly registered?
@nomanabid71135 жыл бұрын
may be first create a super user
@shashanksharmadon42954 жыл бұрын
Awesome...................
@rathnaveljn4235 жыл бұрын
HOW TO perform some action when a dropdown menu is changed its item in DJANGO?
@abdelrhmanahmed13784 жыл бұрын
now function are called when ever save() called , so if i create new user then save is called then i will get a signal and my logic will get executed, when i update user then also save() get called ,then i also get a signal or not ?!!
@nsulanov3125 жыл бұрын
Great 👍🏼 tutorial
@timothybloxsome58025 жыл бұрын
This is gold!
@pariszarka79595 жыл бұрын
i want to use signals to send an email to the user everytime a user is registerd
@nomanabid71135 жыл бұрын
you can
@defidelity3 жыл бұрын
Ykb 👍 thanks
@alimurtuza3474 жыл бұрын
it is bit confusion that we call that signal before the request is done
@shubhamnaik42055 жыл бұрын
Sir, How to stop the "RecursionError" in post_save django signals ? I am calling the post_save signal after updating the post and changing the slug associated with the Post
@chakradharpalaparthi46914 жыл бұрын
Add the slug using pre_save and not post_save. Because updating a Post in post_save will re-trigger the same receiver.
@Nadeemkhan-fs2ys6 жыл бұрын
Great
@Didneodl6 жыл бұрын
Thank you for the great tutorial! Do you have any plans to make a tutorial about server side rendering with Django and React in the future? As ssr is required for websites focusing on SEO, I think it would be pretty much demanding!
@mattfreire6 жыл бұрын
+Jaehong Park Thanks. Yes we do plan on making a tutorial on it in the coming weeks
@shahzadisairaawan50794 жыл бұрын
sir, can you please turn up your volume. all of your videos are very low in sound
@davidmurphy5632 жыл бұрын
I wonder if anyone else here has experience with the Godot games engine which has a practically identical signals system.
@shaheerzaman6206 жыл бұрын
Good Video. The audio is too low in all your videos. Please make it louder.Thanks.