Connect MongoDB with Django project using PyMongo | Complete Guide to MongoDB CRUD Operations

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ม.ค. 2025

ความคิดเห็น • 51

  • @smartstableequipment240
    @smartstableequipment240 11 หลายเดือนก่อน +8

    First video which I saw with basics. Thank you! Now I know what is the aim of PyMongo & MongoDB

    • @CodingWithKazim
      @CodingWithKazim  11 หลายเดือนก่อน

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @uchesamuelottah559
    @uchesamuelottah559 ปีที่แล้ว +1

    Straight to the point, no BS, exactly what i needed to get started.
    Thank you

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @joaoafonso9087
    @joaoafonso9087 11 หลายเดือนก่อน +3

    why can't i do "python manage.py migrate", i get: django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.

    • @CodingWithKazim
      @CodingWithKazim  11 หลายเดือนก่อน

      It appears that the error message you're encountering is related to improperly configured database settings in your Django project. Ensure that you have properly configured the DATABASES setting in your Django project's settings file (settings.py). Specifically, make sure you have defined the ENGINE value for your database connection.
      The ENGINE value depends on the database you used. For example for PostgreSQL database it's 'django.db.backends.postgresql_psycopg2' and it varies with changes in DB.

    • @joaoafonso9087
      @joaoafonso9087 11 หลายเดือนก่อน

      @@CodingWithKazim yes, in the mean time, i managed to solve it thanks anyway !

    • @CodingWithKazim
      @CodingWithKazim  11 หลายเดือนก่อน

      @@joaoafonso9087 That's great. Glad to hear!

  • @biplabmondal-vb5oo
    @biplabmondal-vb5oo ปีที่แล้ว +1

    100% genuine and accurate tutorial on TH-cam. Thanks a lot for this valuable content. I'll save this video for future use. Please don't remove or private this video.

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Thanks. Glad to know it helped.
      Please consider subscribing to the channel for more awesome content.

  • @iananeri6255
    @iananeri6255 หลายเดือนก่อน

    Thank you, I needed this to a college homework

    • @CodingWithKazim
      @CodingWithKazim  หลายเดือนก่อน

      Great, glad to know it helped 🎊

  • @rogerpaesani5074
    @rogerpaesani5074 18 วันที่ผ่านมา

    Hello, would you still consider Djongo an experiment and not recomended for professional use, taking into acount that it has been updated recently?
    Thanks for the video.

  • @drishya8925
    @drishya8925 2 หลายเดือนก่อน

    i love you thankyou sm for this tutorial

    • @CodingWithKazim
      @CodingWithKazim  2 หลายเดือนก่อน

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @noscopedemon4308
    @noscopedemon4308 4 หลายเดือนก่อน

    do we need to create a connection file for each django app?

  • @amanbaghel1104
    @amanbaghel1104 ปีที่แล้ว

    Clear like a CRYSTAL

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @sasindudilshan6679
    @sasindudilshan6679 11 หลายเดือนก่อน

    thank you very much sir! exactly this is what i looking for

    • @CodingWithKazim
      @CodingWithKazim  11 หลายเดือนก่อน +1

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

    • @sasindudilshan6679
      @sasindudilshan6679 10 หลายเดือนก่อน

      @@CodingWithKazim if i get some knowledge from someone in YT, i don't forget to subscribe. So, subscribed!

    • @CodingWithKazim
      @CodingWithKazim  10 หลายเดือนก่อน +1

      @@sasindudilshan6679 That's so kind of you, thanks.

  • @natashasen3548
    @natashasen3548 5 หลายเดือนก่อน

    Simple and straightforward explanation. Thanks a lot. It really helps a lot.

    • @CodingWithKazim
      @CodingWithKazim  5 หลายเดือนก่อน

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @orange362
    @orange362 9 หลายเดือนก่อน +1

    please tell me where will i find the new connection in the mongodb compass

    • @CodingWithKazim
      @CodingWithKazim  9 หลายเดือนก่อน

      In MongoDB Compass, you can find the option to create a new connection in the "Connect" tab. Simply click on "New Connection" and fill in the necessary details such as the connection name, host, port, and authentication credentials if required. Once filled, click "Connect" to establish the connection to your MongoDB database.
      Hopefully this will help.

  • @mrityunjoysaha2060
    @mrityunjoysaha2060 4 หลายเดือนก่อน

    Thank you for correct information and clearing the doubts about djongo

    • @CodingWithKazim
      @CodingWithKazim  4 หลายเดือนก่อน

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @muhannadalulaby8727
    @muhannadalulaby8727 ปีที่แล้ว

    Great tutorial and great explanation. the only source that actually made the thing work

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @jaspreetdhillon3847
    @jaspreetdhillon3847 ปีที่แล้ว +1

    why my file not run it is showing that import pymongo is partially initialised? please solve my problem

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Ensure you have installed the 'pymongo' library using 'pip install pymongo'. If the issue persists, check for typos in your import statement and verify your MongoDB connection configuration. Restart your Django server after making changes.

  • @dhanalaxmikarnati6905
    @dhanalaxmikarnati6905 ปีที่แล้ว +1

    Thank you so much sir.....u helped me alot for my project

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว +1

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @Mjj588
    @Mjj588 ปีที่แล้ว

    It really helped a lot thank you so much ❤

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos

  • @dalelloussaief4373
    @dalelloussaief4373 ปีที่แล้ว

    It really helped a lot thank you so much

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว +1

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

    • @dalelloussaief4373
      @dalelloussaief4373 11 หลายเดือนก่อน

      done can you do a video CRUD and API django and thanks so mush @@CodingWithKazim

  • @smkop393
    @smkop393 4 หลายเดือนก่อน

    Good 👍🏻👍🏻

    • @CodingWithKazim
      @CodingWithKazim  4 หลายเดือนก่อน

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos

  • @edwarddesouz7350
    @edwarddesouz7350 ปีที่แล้ว

    Really helpful brother

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Glad to know it helped 🎊
      Please consider subscribing to the channel for more awesome videos.

  • @syedhasnainraza290
    @syedhasnainraza290 ปีที่แล้ว

    I worked. Thanks

  • @MyanmaHan
    @MyanmaHan ปีที่แล้ว

    Thanks you sir, and pls continue to display mongodata in django website

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว +2

      Thanks, Surely will do.
      Please consider subscribing to the channel.

  • @jehovahmbote3048
    @jehovahmbote3048 ปีที่แล้ว

    Thank you very much for this video it is really very clear and simple to understand. Can you make a video on how to create a superuser

    • @CodingWithKazim
      @CodingWithKazim  ปีที่แล้ว

      Glad to know it helped. You can support me by subscribing to the channel.
      For sure, I will create a video on this topic. But for now, you just need to run this command at the root directory in your terminal.
      *‘python manage.py createsuperuser’*
      It will then ask you to enter the email and password for your superuser. After adding it superuser will be successfully created.

    • @jehovahmbote3048
      @jehovahmbote3048 ปีที่แล้ว

      @@CodingWithKazim Thanks i will try it.
      I would also like to know how to create and authenticate a user with pymongo