But how do DJANGO signals work?

Sdílet
Vložit
  • čas přidán 13. 09. 2024

Komentáře • 77

  • @divakaryadav2265
    @divakaryadav2265 Před 3 lety +16

    4 years ago I got into IT because of you and surprised to see such less subscribers. you deserve a lot more.

    • @CodingEntrepreneurs
      @CodingEntrepreneurs  Před 3 lety +24

      Thank you but hearing you got into IT because of my videos is worth 100mil subs.

    • @niyasmohammed046
      @niyasmohammed046 Před 3 měsíci

      Hi DIvakaryadav shall we connect on LinkedIn?

  • @concrete4054
    @concrete4054 Před 3 lety +42

    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 Před 3 lety +6

      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 Před 3 lety +2

      yeah man actually needed!

    • @alexy.3512
      @alexy.3512 Před 3 lety +3

      Two Scoops of Django 3.x

    • @JA-ur8ob
      @JA-ur8ob Před rokem

      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

  • @rafafi7213
    @rafafi7213 Před rokem +1

    Thank you for the help understanding signals! helped me out a lot. caught you slipping there tho at 17:02.

  • @codegeek8256
    @codegeek8256 Před 3 lety +4

    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.

  • @fathiabdelmalek2001
    @fathiabdelmalek2001 Před 3 lety

    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

  • @bobtanner5151
    @bobtanner5151 Před 3 lety +2

    Deep drive into full stack testing. Testing views, models, forms, etc.

  • @mhmmdmustafayev8216
    @mhmmdmustafayev8216 Před 2 lety +1

    best explaination

  • @TimePasser
    @TimePasser Před 3 lety

    You are amazing. Thank you very much for the effort of teaching in very simplified way. Iam learning a lot from you. Thank you.

  • @pawankushwah4992
    @pawankushwah4992 Před 2 lety

    Very good and simple explanation.

  • @user-si3yb1ps3i
    @user-si3yb1ps3i Před 2 lety

    thx very much for subtitles

  • @salmanmammadli
    @salmanmammadli Před 5 měsíci

    Thank you very much man.

  • @brhh
    @brhh Před 3 lety

    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

  • @hellosingh4408
    @hellosingh4408 Před 3 lety

    Very helpful video

  • @dikimuhamadsyidik9650
    @dikimuhamadsyidik9650 Před 3 lety +1

    Thankyou justin this is helpful

  • @JoseLuisMorales
    @JoseLuisMorales Před rokem

    Best signals introduce for beginners ever 🎉😊

  • @kwakukarikari8095
    @kwakukarikari8095 Před 3 lety

    Very good explanation.

  • @khalednur9229
    @khalednur9229 Před 3 lety

    thanks for sharing this idea. you help me a lot!!!!

  • @ellawhitestone
    @ellawhitestone Před 3 lety

    Thanks my dear brother... Very good examplez

  • @joy_sam_raj
    @joy_sam_raj Před rokem

    Thanks a lot.. Well clear explanation

  • @nextgodlevel
    @nextgodlevel Před 3 lety +2

    he is not a teacher, he is more than a teacher the way he teaches is awesome

  • @shaxzod6485
    @shaxzod6485 Před 3 lety

    Thank you bro for the amazing content)

  • @youssefel-shabasy833
    @youssefel-shabasy833 Před 2 lety

    great tutorial, keep it going :D

  • @tomaszscierski7351
    @tomaszscierski7351 Před 3 lety

    Great job, thank you

  • @Techiesse
    @Techiesse Před 3 lety +1

    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  Před 3 lety +1

      Thanks. Here are my thoughts on this exactly : www.codingforentrepreneurs.com/blog/post-save-vs-pre-save-vs-override-save-method

    • @CodingEntrepreneurs
      @CodingEntrepreneurs  Před 3 lety +1

      I haven’t changed my view on this either :)

    • @CodingEntrepreneurs
      @CodingEntrepreneurs  Před 3 lety +1

      And the official docs: docs.djangoproject.com/en/3.1/topics/db/models/

    • @Techiesse
      @Techiesse Před 3 lety

      @@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.

  • @johnathanjames2872
    @johnathanjames2872 Před 10 měsíci

    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

  • @Morteza7220
    @Morteza7220 Před rokem

    thanks

  • @csandreas1
    @csandreas1 Před 3 lety

    Please make a video about business logic in django. Some people believe that business logic should be in the Models

  • @MainulHoqueHira28
    @MainulHoqueHira28 Před 3 lety

    awesome video

  • @tajbinkhan4858
    @tajbinkhan4858 Před 3 lety

    Hi sir, Big fan of you and your tutorial. I have a request on Django framework. I have searched CZcams 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. 🥰🥰🥰

  • @ajinzrathod
    @ajinzrathod Před 3 lety +1

    21:25 Would be good if you included that video link in description. Couldn't find it.

    • @CodingEntrepreneurs
      @CodingEntrepreneurs  Před 3 lety

      You're right. It's here cfe.sh/projects/time-tasks-2
      Thank you

    • @ajinzrathod
      @ajinzrathod Před 3 lety

      @@CodingEntrepreneurs Thank you so much ♥♥♥♥

  • @LucienDadaKYABU
    @LucienDadaKYABU Před 2 lety +1

    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 ?

  • @grandlibulu3701
    @grandlibulu3701 Před 2 lety

    Can you cover Signals for foreignkeyfield

  • @ajinzrathod
    @ajinzrathod Před 3 lety

    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.

  • @usamahussain4461
    @usamahussain4461 Před rokem

    got question.
    Instance is not given an ID until you save it.
    But how is the condition working in blog_post_pre_save() model?

  • @mohammedfareedh
    @mohammedfareedh Před 3 lety

    So Justin Bro, This acts like a trigger that is used in relational SQL tables servers like Mysql, PostgreSQL and etc

  • @Brother_rafael356
    @Brother_rafael356 Před 2 měsíci

    im still confused as a first timer learning django but im less confused compared to 45 minutes ago thanks

  • @idrisrampurawala
    @idrisrampurawala Před 3 lety

    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 Před 5 měsíci

    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

  • @bhutanpythoncoder
    @bhutanpythoncoder Před 3 lety +1

    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  Před 3 lety +2

      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 Před 3 lety

      @@CodingEntrepreneurs Thank you so much sir. I learn a lot from your channel. May you reach million subscriber ASAP.

  • @tinoutech5016
    @tinoutech5016 Před 2 lety

    Why signals work only when we put them in the models.py file?

  • @baldeagle6531
    @baldeagle6531 Před 3 lety

    Please help me,
    signal m2m_changed post_remove does not work for me

  • @shivamdubey4783
    @shivamdubey4783 Před rokem

    can we use django signals to send notifications also

  • @litDevYT
    @litDevYT Před 3 lety

    Never dissappoints like always

  • @JoseNavas
    @JoseNavas Před 3 lety

    Thanks for the tutorial. Any chance you update your DRF course on Udemy?

  • @ceswest1223
    @ceswest1223 Před 3 lety

    how can I implement django signals in docker?

  • @poonamyadav7552
    @poonamyadav7552 Před 3 lety

    Is this same process,if our project is live

  • @onlinetimenow1647
    @onlinetimenow1647 Před 3 lety

    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 Před 3 lety

      did you try smart_select library?it has a chainedfield functionality

  • @sachinjadhav8252
    @sachinjadhav8252 Před 3 lety

    Why Python Ecommerce.com site not working?

  • @deepbhut1922
    @deepbhut1922 Před 2 lety

    hey.. sir is it work django with mysql database

  • @ashrf8050
    @ashrf8050 Před rokem

    🥰

  • @dhavalsavalia
    @dhavalsavalia Před 3 lety +2

    NSFW warning at 17:00 xD

  • @hiromsantosh4215
    @hiromsantosh4215 Před 3 lety

    Is server side rendering possible with django, if then plz do a tutorial :)

    • @brhh
      @brhh Před 3 lety

      I believe django already uses server side rendering for the templates, they are giving them raw

  • @jasonk4614
    @jasonk4614 Před 2 lety

    17:02 :)

  • @neildutoit5177
    @neildutoit5177 Před rokem

    Video title: "But how do DJANGO signals work?"
    Video: "Here's how to use Django signals"
    Nice clickbait.

  • @saeedmhmoud109
    @saeedmhmoud109 Před 3 lety +1

    Translate for Arabic please

  • @aksjin8929
    @aksjin8929 Před 3 lety

    .