Тёмный

But how do DJANGO signals work? 

CodingEntrepreneurs
Подписаться 363 тыс.
Просмотров 43 тыс.
50% 1

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 77   
@concrete4054
@concrete4054 3 года назад
Would be cool, if you could go deeper into how to structuring larger applications in a sailable and maintanable way. Including folder structure, business logic, validation... There are a lot of beginner tutorials. But it is much harder to find advanced tutorials.
@jesseinit
@jesseinit 3 года назад
I really second this. Everywhere you go to is a bunch of beginner vidoes...We could use a bit more complexity right now
@sarveshyadav01
@sarveshyadav01 3 года назад
yeah man actually needed!
@alexy.3512
@alexy.3512 3 года назад
Two Scoops of Django 3.x
@JA-ur8ob
@JA-ur8ob Год назад
As this post is 2 years old, keen to know 2 things: 1- Did you guys get a decent job or create a decent website that scaled well? 2- Maybe you can now answer your own question for me? I've been working on a large django project for 8 months and now have to make a massive database change because of a database design flaw. It'd be good to hault my progress and learn scalability concepts before I continue to prevent this from happening again. Thanks
@divakaryadav2265
@divakaryadav2265 3 года назад
4 years ago I got into IT because of you and surprised to see such less subscribers. you deserve a lot more.
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
Thank you but hearing you got into IT because of my videos is worth 100mil subs.
@niyasmohammed046
@niyasmohammed046 4 месяца назад
Hi DIvakaryadav shall we connect on LinkedIn?
@codegeek8256
@codegeek8256 3 года назад
This is a very good tutorial, i would suggest you make it a series whereby you cover this kind of Django specialized concepts that are not usually covered in general tutorials. You pick them same as you picked signals and focus only on them per video. it would have been nice if you also cover m2m signals. Thank you.
@rafafi7213
@rafafi7213 Год назад
Thank you for the help understanding signals! helped me out a lot. caught you slipping there tho at 17:02.
@bobtanner5151
@bobtanner5151 3 года назад
Deep drive into full stack testing. Testing views, models, forms, etc.
@dhavalsavalia
@dhavalsavalia 3 года назад
NSFW warning at 17:00 xD
@shivampratap8259
@shivampratap8259 3 года назад
i literally came down to type that thing XD
@neildutoit5177
@neildutoit5177 Год назад
Video title: "But how do DJANGO signals work?" Video: "Here's how to use Django signals" Nice clickbait.
@mhmmdmustafayev8216
@mhmmdmustafayev8216 2 года назад
best explaination
@Brother_rafael356
@Brother_rafael356 3 месяца назад
im still confused as a first timer learning django but im less confused compared to 45 minutes ago thanks
@usamahussain4461
@usamahussain4461 Год назад
got question. Instance is not given an ID until you save it. But how is the condition working in blog_post_pre_save() model?
@johnathanjames2872
@johnathanjames2872 10 месяцев назад
About adding slugs to an instance, doesn't using signals seems a little bit overkill, I mean I'm always overriding the save() method in the Model, check if there's a slug on the instance, if not, slugify the title, add it as an attribute to the instance and call the super save
@baldeagle6531
@baldeagle6531 3 года назад
Please help me, signal m2m_changed post_remove does not work for me
@ajinzrathod
@ajinzrathod 3 года назад
21:25 Would be good if you included that video link in description. Couldn't find it.
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
You're right. It's here cfe.sh/projects/time-tasks-2 Thank you
@ajinzrathod
@ajinzrathod 3 года назад
@@CodingEntrepreneurs Thank you so much ♥♥♥♥
@grandlibulu3701
@grandlibulu3701 2 года назад
Can you cover Signals for foreignkeyfield
@ceswest1223
@ceswest1223 3 года назад
how can I implement django signals in docker?
@deepbhut1922
@deepbhut1922 2 года назад
hey.. sir is it work django with mysql database
@tinoutech5016
@tinoutech5016 2 года назад
Why signals work only when we put them in the models.py file?
@shivamdubey4783
@shivamdubey4783 Год назад
can we use django signals to send notifications also
@sachinjadhav8252
@sachinjadhav8252 3 года назад
Why Python Ecommerce.com site not working?
@bhutanpythoncoder
@bhutanpythoncoder 3 года назад
Thank you for the great content. Will django signal works if i have to give access to students which was registered by teacher in school management system. Haven't seen tutorials taking about this. I would be very grateful if you give some idea. Thank you 🙏🙏🙏🙏
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
The Signals I used based on models, not users. So you can use it for what you’ve said. Why not experiment on your own?!
@bhutanpythoncoder
@bhutanpythoncoder 3 года назад
@@CodingEntrepreneurs Thank you so much sir. I learn a lot from your channel. May you reach million subscriber ASAP.
@poonamyadav7552
@poonamyadav7552 3 года назад
Is this same process,if our project is live
@сергейустинов-э1с
@сергейустинов-э1с 2 года назад
thx very much for subtitles
@LucienDadaKYABU
@LucienDadaKYABU 3 года назад
Great Tutorial! Helped me achieve some King of business logic in an Invoice and Stock Management System. But How To notify user in a django template in realtime like maybe the user x has been deleted or Added ?
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
Make a notifications app with models for the user
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
There’s a third party one called Django-notify I believe
@salmanmammadli
@salmanmammadli 6 месяцев назад
Thank you very much man.
@mohammedfareedh
@mohammedfareedh 3 года назад
So Justin Bro, This acts like a trigger that is used in relational SQL tables servers like Mysql, PostgreSQL and etc
@Techiesse
@Techiesse 3 года назад
I understood how to use signals. That was a great explanation. Thank you. I'd like to place a practical question, if I may: I don't see why I would implement the behaviours on BlogPost using signals. Why not override the save method (for instance) on the model itself? It seems to me a much cleaner workflow for the example you presented. By overriding the method I'd have all the class related behaviour in one place under the umbrella of the class itself. I can see the utility for signals when dealing with a layered architecture and I don't want to inject code of a higher layer into a lower layer (which shouldn't know anything about its clients). The first example, triggering actions based on User creation, matches perfectly this scenario. I know your intention is to bring a didactical example to showcase the signals. I'm just elaborating on this on my side. Congrats for the great content!
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
Thanks. Here are my thoughts on this exactly : www.codingforentrepreneurs.com/blog/post-save-vs-pre-save-vs-override-save-method
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
I haven’t changed my view on this either :)
@CodingEntrepreneurs
@CodingEntrepreneurs 3 года назад
And the official docs: docs.djangoproject.com/en/3.1/topics/db/models/
@Techiesse
@Techiesse 3 года назад
@@CodingEntrepreneurs Hi, thanks for replying. I read your blog post. I think the example you mention there is similar (you provide handlers for a class defined in another file) to the User example you use in the video, which for me is ok. What is making me think is the Blogpost model. In this case I'm trying to figure out what makes more sense.
@dikimuhamadsyidik9650
@dikimuhamadsyidik9650 3 года назад
Thankyou justin this is helpful
@saeedmhmoud109
@saeedmhmoud109 3 года назад
Translate for Arabic please
@csandreas1
@csandreas1 3 года назад
Please make a video about business logic in django. Some people believe that business logic should be in the Models
@JoseNavas
@JoseNavas 3 года назад
Thanks for the tutorial. Any chance you update your DRF course on Udemy?
@tajbinkhan4858
@tajbinkhan4858 3 года назад
Hi sir, Big fan of you and your tutorial. I have a request on Django framework. I have searched RU-vid and google about booking system with Django. But I did not get proper instruction how to do that. If you upload tutorial about that, it will be very grateful. Thank you, sir. 🥰🥰🥰
@TimePasser
@TimePasser 3 года назад
You are amazing. Thank you very much for the effort of teaching in very simplified way. Iam learning a lot from you. Thank you.
@idrisrampurawala
@idrisrampurawala 3 года назад
Nice tutorial as always 😉 Thanks for sharing. I have one query regarding usage of signals in a distributed environment. Let's say we are running django in multiple processes via docker or something and these signals are run inside the same process in which the model was created. So how to handle scenarios for failover. Like if the process got crashed without executing let's say the post save signal. And when it restarts, the signal is lost but model got saved. Any ideas on these scenarios?
@LifeIsCrazyAsShit
@LifeIsCrazyAsShit 6 месяцев назад
Here is some challenge i guess How to pass additional data to the signal For example we have default user model and while user registration we are also asking for some additional data like phone number, DOB, etc ..these additional data needed to pass to the signal
@fathiabdelmalek2001
@fathiabdelmalek2001 3 года назад
Thanks. Thank you a lot. Thank you so mush. I have searched for two weeks for that, and finally find it and understand it. Thank you
@ellawhitestone
@ellawhitestone 3 года назад
Thanks my dear brother... Very good examplez
@brhh
@brhh 3 года назад
I would like to see a deep dive into Channels because there seems to be little to no in depth explainations with the same way you present the details which is so unique and understandable
@Morteza7220
@Morteza7220 Год назад
thanks
@khalednur9229
@khalednur9229 3 года назад
thanks for sharing this idea. you help me a lot!!!!
@JoseLuisMorales
@JoseLuisMorales Год назад
Best signals introduce for beginners ever 🎉😊
@ashrf8050
@ashrf8050 Год назад
🥰
@jasonk4614
@jasonk4614 2 года назад
17:02 :)
@shaxzod6485
@shaxzod6485 3 года назад
Thank you bro for the amazing content)
@ajinzrathod
@ajinzrathod 3 года назад
25:22 He says, "actually that doesn't cover all types of delete". That means that when you delete multiple objects(using multiple checkboxes in django admin), def delete () would not work there. It only works on single object. Hope this clears someone doubt.
@poonamyadav7552
@poonamyadav7552 3 года назад
Is this same process,if our project is live
@pawankushwah4992
@pawankushwah4992 2 года назад
Very good and simple explanation.
@onlinetimenow1647
@onlinetimenow1647 3 года назад
what's the best way to implement dependant drop-down chained field in a django form(like: country->city and category->subcategory) retrieving data from db. i personally have difficulty to get the response back and populate the field(although i followed some examples but not happening). thank
@dilipsai909
@dilipsai909 3 года назад
did you try smart_select library?it has a chainedfield functionality
@joy_sam_raj
@joy_sam_raj Год назад
Thanks a lot.. Well clear explanation
@litDevYT
@litDevYT 3 года назад
Never dissappoints like always
@youssefel-shabasy833
@youssefel-shabasy833 2 года назад
great tutorial, keep it going :D
@kwakukarikari8095
@kwakukarikari8095 3 года назад
Very good explanation.
@hiromsantosh4215
@hiromsantosh4215 3 года назад
Is server side rendering possible with django, if then plz do a tutorial :)
@brhh
@brhh 3 года назад
I believe django already uses server side rendering for the templates, they are giving them raw
@tomaszscierski7351
@tomaszscierski7351 3 года назад
Great job, thank you
@hellosingh4408
@hellosingh4408 3 года назад
Very helpful video
@nextgodlevel
@nextgodlevel 3 года назад
he is not a teacher, he is more than a teacher the way he teaches is awesome
@MainulHoqueHira28
@MainulHoqueHira28 3 года назад
awesome video
@aksjin8929
@aksjin8929 3 года назад
.
Далее
Django Interview Questions (Junior Developer)
30:26
Просмотров 124 тыс.
Почему?
00:22
Просмотров 426 тыс.
Being Competent With Coding Is More Fun
11:13
Просмотров 84 тыс.
Learn the Basics of Django Signals
22:37
Просмотров 50 тыс.
Understanding Django Model Relationships
25:56
Просмотров 94 тыс.
Custom Django User Model // DJANGO Tutorial
1:04:40
Просмотров 156 тыс.
Django Channels & WebSockets Oversimplified
16:35
Просмотров 136 тыс.