Connect to PostgreSQL from Python (Using SQL in Python) | Python to PostgreSQL

Поділитися
Вставка
  • Опубліковано 14 лип 2024
  • Connect to PostgreSQL from Python (Using SQL in Python) | Python to PostgreSQL
    In this video, we shall understand how to connect to PostgreSQL Database from Python. We shall write a python program which will use the Psycopg2 module to connect to the PostgreSQL database and then perform some database or SQL transactions such as creating a table and then insert data to the table, updating a table data and delete records from the table using python code. We shall also see how to fetch table data from postgres database to python program.
    At the end of the video, I will also cover how to use Context Manager to perform all of the above SQL operations. That is, we will use the WITH clause to connect to the database and also use the WITH clause to open the cursor. I will also mention what are the advantages of using WITH clause and why it is recommended to always use context manager or WITH clause when working with database in python.
    Download the Python script used in this video from my blog. Link below:
    techtfq.com/video/connect-to-...
    Timeline:
    00:00 Intro
    00:42 Prerequisites for connecting to PostgreSQL from Python
    02:18 Connecting to PostgreSQL from Python
    05:33 Opening a cursor to perform database operations
    07:52 CREATE Table in PostgreSQL database from Python program
    10:37 INSERT single record to a table in PostgreSQL from Python program
    12:23 INSERT multiple records to PostgreSQL table from Python program
    14:30 FETCH data from PostgreSQL Table and display in Python program
    17:23 UPDATE Table data in PostgreSQL database from Python program
    18:50 DELETE Table record in PostgreSQL database from Python program
    20:14 Using Context Manager to connect to PostgreSQL database from Python
    We shall be using psycopg2 module to connect to PostgreSQL database from python, which is considered to be one of the best libraries to connect to postgres from python.
    We shall start the video by covering the couple of pre-requisites which is to first install the psycopg2 module and then finding the credentials or information required to connect to the postgres database.
    After this we shall write the python program which will initially connect to the PostgreSQL database and then open a cursor which will be then used to perform the database operations like CREATE TABLE, INSERT INTO Table, UPDATE Table data, DELETE table record and also how to fetch or retrieve table records or table data from the database to Python program.
    Finally, we shall end the video by talking about context manager way of connecting to the database and also how to use context manager to open a cursor. Using context manager is simply using the WITH clause while connecting to the database and then also using the WITH clause while opening the cursor.
    I will also mention the advantages of using a context manager over the traditional method or connecting to data and opening the cursor. And also mention why is it recommended to always use context manager when connecting to database in python.
    Hopefully this video helped and gave you some useful information of using SQL within python program. If you liked it then please make sure to like the video and also subscribe to the channel.
    🔴 WATCH MORE VIDEOS HERE 👇
    ✅ SQL Tutorial - Basic concepts:
    • SQL Tutorial - Basic c...
    ✅ SQL Tutorial - Intermediate concepts:
    • SQL Tutorial - Interme...
    ✅ SQL Tutorial - Advance concepts:
    • SQL Tutorial - Advance...
    ✅ Practice Solving Basic SQL Queries:
    • Practice Solving BASIC...
    ✅ Practice Solving Intermediate SQL Queries:
    • Practice Solving INTER...
    ✅ Practice Solving Complex SQL Queries:
    • Practice Solving COMPL...
    ✅ Data Analytics Career guidance:
    • Data Analytics career ...
    ✅ SQL Course, SQL Training Platform Recommendations:
    • SQL Course / Training
    ✅ Python Tutorial:
    • Python Tutorial
    ✅ Git and GitHub Tutorial:
    • Git and GitHub
    ✅ Data Analytics Projects:
    • Data Analytics Projects
    THANK YOU,
    Thoufiq

КОМЕНТАРІ • 171

  • @girijashamak9142
    @girijashamak9142 2 роки тому +46

    As a old woman learning to upgrade, I found your videos handy and very clear to catch up.I am one of your subscriber.I watched your SQL contents and simply loved it. So are your python concepts. Thank you for all your hardwork and is not easy to deliver.God bless and keep teaching people like me and others🙏

    • @techTFQ
      @techTFQ  2 роки тому +6

      Hi Girija,
      This is such a beautiful feedback… I cannot express my happiness hearing that my videos have helped you ..
      Each video takes a lot of effort to make and it’s all worth it when I get to hear such beautiful words from you guys..
      I am so great full that you took your time to leave me this feedback..
      THANK YOU 🙏🏼
      And I wish you all the best in your learning journey 🙂

    • @dudeparak5654
      @dudeparak5654 2 роки тому

      installed paycopg2 for python pycharm and imported to the project.But the functions like curson() execute() are not autopopulated when I calling with the connection object

  • @mtmanalyst
    @mtmanalyst Рік тому +3

    This is really great stuff!
    I'm a math, ml, guy and I feel like I'm learning great python techniques here
    THANK YOU
    Morgan

  • @gabip265
    @gabip265 Рік тому +3

    Such a comprehensive and quick tutorial to get the basics! I recommend this tutorial after watching neural nine crash course for python and postgres. This really gives you more efficient and clean solutions for writting code.

  • @prathagautam9872
    @prathagautam9872 5 місяців тому +2

    Instantly subscribed!
    You mentioned all the details like preventing sql injection, using the 'with' clause, and so on (unlike other youtube tutors who just skip these ), so it's really helpful and you're a fantastic teacher! 💯

  • @NiceChange
    @NiceChange Рік тому

    This video is pure gold!!! Thank you for doing such a great job on this.

  • @ruthaipoh8373
    @ruthaipoh8373 2 роки тому +3

    This video was quite helpful. Saved me a lot of time and very comprehensive too. Thank you🙏

  • @DanjumaMuhammad
    @DanjumaMuhammad Рік тому

    Very quick, clear and easy to catch. Thanks:)

  • @NiceChange
    @NiceChange Рік тому

    Dude. Love this video. demystifying postgres with python. Great work!!! this video goes in the vault. Thank you.

  • @dogedingo1535
    @dogedingo1535 Рік тому

    Very clear and instructions where easy to follow! Thanks for this video.

  • @shakearound5789
    @shakearound5789 8 місяців тому +2

    You taught this fantastically! With your teaching I am able to immediately go away and use this knowledge on my own project - it's rare that anyone teaches me something that can enable me to do this with such ease. Look forward to watching more of your videos!

    • @techTFQ
      @techTFQ  7 місяців тому

      Thank you . Glad it helped

  • @dimplesantoshi8561
    @dimplesantoshi8561 2 роки тому +2

    Very Nicely explained...Clarity was maintained from the beginning till the end of the video. Thank you so much!

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you Dimple :)

  • @okondivine4918
    @okondivine4918 Рік тому

    This a fantastic video....Pure gold!

  • @mtmanalyst
    @mtmanalyst Рік тому +1

    Excellent !!!
    Thank you
    Morgan

  • @kunrath
    @kunrath 2 роки тому +1

    Thx for the video, very useful and easy to understand! great job!

  • @piyushtalegaonkar2940
    @piyushtalegaonkar2940 Рік тому

    woooo man THANK YOU SO MUCH you helped me a lot bro, you literally made this so easy to understand and spot on
    I just started learning python and my manager is like I need results , you made my life easy by posting this video !!!!
    🙏🙏🙏

  • @Makingdifference100
    @Makingdifference100 2 роки тому +6

    You saved me today. Thanks, awesome video. Can you do more videos like this one, please? I love your method of teaching you are a natural teacher. Thank you! Absolutely a fantastic video!!!!!

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you so much Santos and sure will do

  • @diegofernandosotoflores7175
    @diegofernandosotoflores7175 10 місяців тому

    Gran video, acarreando el proyecto. Un grande Thoufiq

  • @ShenderRamos
    @ShenderRamos Рік тому

    Great video, well explained, organized and efficient

  • @hoanglam2814
    @hoanglam2814 Рік тому

    short and concise. thank you!

  • @shiblyaziz9553
    @shiblyaziz9553 2 роки тому +2

    Thank you! Absolutely a fantastic video!!!!!. I love your teaching method.

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you 🙏🏼
      Glad this helped

  • @MrutyunjayNayak
    @MrutyunjayNayak Рік тому

    Brilliant video bro…I am learning python now. Your videos are crisp and self explanatory. Subscribed❤

  • @ashaoluayanfe7474
    @ashaoluayanfe7474 Рік тому

    Thank you so much for the video, I was having problems with rollback, any single mistake that I made, I had to start all over, but your video showed me a better approach.

  • @YoYoNo.1official
    @YoYoNo.1official 5 місяців тому +1

    THanks Bro Luv From India❤️

  • @user-os4lj3pi4q
    @user-os4lj3pi4q 3 місяці тому

    Very nice video. Not only showing how to get things done but also details like the try block, the little scripts (to reuse code) and stuff.

  • @user-wb1ov4vh9x
    @user-wb1ov4vh9x День тому

    Very helpful video.... Thank you so much😊😊

  • @anurasenarathna1703
    @anurasenarathna1703 2 роки тому +1

    Very informative and very clear. Thank you for sharing your knowledge.

    • @techTFQ
      @techTFQ  2 роки тому

      Your welcome Anura,
      Glad this helped

  • @ratneshraj4653
    @ratneshraj4653 Рік тому

    Please continue making more dedicated videos in Python just like SQL.
    THANKS IN ADVANCE

  • @mickyelmb
    @mickyelmb 2 роки тому +2

    Great tutorial, very helpful. Thank you for posting it.

    • @techTFQ
      @techTFQ  2 роки тому

      Glad this helped

  • @user-bl4nq4qg9u
    @user-bl4nq4qg9u 4 місяці тому

    The explanation is really clear! It is easy to understand what you are doing. Great job!

  • @byte0me
    @byte0me 2 місяці тому

    Super helpful thank you!

  • @anduamlaktadesse9284
    @anduamlaktadesse9284 2 роки тому +1

    Thank you sir for everything! It's really appreciated!

    • @techTFQ
      @techTFQ  2 роки тому

      Glad you like them

  • @maxx27i
    @maxx27i 2 роки тому

    Very nice explanation! 👏

  • @ErikS-
    @ErikS- Рік тому

    Excellent video.

  • @stephenmusangi8976
    @stephenmusangi8976 Рік тому

    Awesome video

  • @azeszterifi
    @azeszterifi Рік тому

    just brilliant!

  • @pushkarratnaparkhi2205
    @pushkarratnaparkhi2205 Рік тому

    very useful video. Thanks a lot.

  • @sivajyothichandra
    @sivajyothichandra Рік тому

    Really. You covered the basic table with DDL, DML along with try, except, format string, tuple very understandable way. I heard using of iterators instead of for loop.

  • @Hlangwaneamukelani
    @Hlangwaneamukelani Рік тому

    Great stuff, Thank You.

  • @mohammedshahil4898
    @mohammedshahil4898 2 роки тому +2

    Really helpful 👌🏻 Keep up the good work🙌🏻👍🏻

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you hero ❤️🙏🏼

  • @Rainmakeroffire
    @Rainmakeroffire Рік тому

    This was very helpful man, thanks a lot.

  • @alexandrelucas5621
    @alexandrelucas5621 Рік тому +1

    Very informative! Thanks!

  • @anubratadas1
    @anubratadas1 9 місяців тому

    Thank you for this great video

  • @pranshulsingh2216
    @pranshulsingh2216 Рік тому

    Thank you so much, really it’s very helpful to me to understand how it’s working together . Thanks a lot.😊😊

  • @nigarsultana1739
    @nigarsultana1739 Рік тому

    Thank you so much for your efforts!!!

  • @Simple.Simple779
    @Simple.Simple779 Рік тому

    you are my life saver...

  • @kondanikhilkumar2198
    @kondanikhilkumar2198 4 місяці тому

    Attracted to subscribe,Thank you

  • @WICKED21SUNNY
    @WICKED21SUNNY 2 роки тому

    very help video for me as I am new to python programming

  • @rics6035
    @rics6035 2 роки тому

    great video! thanks a lot

  • @samucancld
    @samucancld 2 роки тому

    buenísimo loko

  • @SanjiVSwaraJ
    @SanjiVSwaraJ Рік тому

    Awesome..

  • @karunakaranr2473
    @karunakaranr2473 Рік тому

    I have been watching your tutorials and really awesome.. Thank you for your time and effort..

  • @sssaamm29988
    @sssaamm29988 2 роки тому +2

    Wow,just one watch i could grasp most of the content.Havent felt boring at any point of time.great job!

    • @techTFQ
      @techTFQ  2 роки тому +1

      Glad you liked it Sampath

  • @sacrupe
    @sacrupe 5 місяців тому

    this video was really helpful, thank you

  • @status_dev
    @status_dev Рік тому +1

    Thx for the video, very useful and easy to understand! great job!😀😀😀😀😀😀😀😀SUPER VIDEO

    • @techTFQ
      @techTFQ  Рік тому

      Glad you liked it!!

  • @ROMAN-zu3wu
    @ROMAN-zu3wu 2 роки тому

    Great tutorial bro

  • @fathimafarahna2633
    @fathimafarahna2633 2 роки тому +1

    Superb.. You have an amazing explaining skills👍👍👍

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you ❤️

  • @MyrLin8
    @MyrLin8 3 місяці тому

    on first blush this seems quite good :) subscribed.

  • @mariacamiladurangobarrera2821

    Thank you!

  • @makhmud_jumanazarov
    @makhmud_jumanazarov Рік тому

    thank you for useful content

  • @FIXENDIARY
    @FIXENDIARY Місяць тому

    Superb

  • @nadeeradulan9231
    @nadeeradulan9231 Рік тому

    Thanks Bro!

  • @hoanglam2814
    @hoanglam2814 Рік тому

    love this one!

  • @Latif127
    @Latif127 8 місяців тому

    Thoufiq, it is a very clear, easy and helpful tutorial, you covered a lot. Thank you.

    • @techTFQ
      @techTFQ  7 місяців тому

      Welcome:)

  • @akashsivasubramanian4067
    @akashsivasubramanian4067 2 роки тому +1

    very clear. thanks a lot.

    • @techTFQ
      @techTFQ  2 роки тому

      You are welcome Akash!

  • @bendibhafed1687
    @bendibhafed1687 Рік тому +1

    Great job Mr. Thoufiq.

    • @techTFQ
      @techTFQ  Рік тому

      Thank you Hafed 🙏🏼

  • @yayasssamminna
    @yayasssamminna Місяць тому

    suggestion : make a video explaining what goes into a config file and where to find all that information. I have trouble understanding how to switch from database administration to the rest of my code. thanks, great video !!!

  • @sowmiyanadarajan8041
    @sowmiyanadarajan8041 Рік тому +1

    Thanks for the video TFQ..I want more python tutorial and sql as well

    • @techTFQ
      @techTFQ  Рік тому

      Noted bro , I’ll get to python soon

  • @younesdeveloper
    @younesdeveloper 4 місяці тому

    top one

  • @festisanat1982
    @festisanat1982 Рік тому

    Bro thank you a lot for the info . I love your method simple and easy.
    Keep the good work pls you a live saver. In programing I mean hh

  • @umaanil3344
    @umaanil3344 2 роки тому +1

    Great tutorial..👏👏

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you Anil 🙏🏼

  • @jessemonisha8018
    @jessemonisha8018 Рік тому

    Super

  • @sivahanuman4466
    @sivahanuman4466 Рік тому +1

    Great sir

  • @zauraxmed9622
    @zauraxmed9622 Рік тому

    thank you

  • @anilsana105
    @anilsana105 Рік тому +1

    clear one

  • @kashmirshadows8150
    @kashmirshadows8150 2 роки тому +1

    Thank you Thoufiq

    • @techTFQ
      @techTFQ  2 роки тому

      Your welcome 🙏🏼

  • @gvs485
    @gvs485 6 місяців тому

    tysm!

  • @JCokee
    @JCokee Рік тому

    This was 22 minutes and 57 seconds of pure AWESOME! Thank you so much! Python & PostgreSQL 101.

  • @saic3149
    @saic3149 2 роки тому +2

    Super explanation really helpful… please cover ‘csv’ module in python

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you so much 🙏🏼
      Really glad you found this helpful 🙂
      Sure will consider your feedback to make a video on csv module..

  • @ruphashree
    @ruphashree 7 місяців тому

    Thank you sir

  • @nihalmohammed8093
    @nihalmohammed8093 Рік тому +1

    111,000th Subscriber

  • @gururajarao7833
    @gururajarao7833 11 місяців тому

    very good video. You could have also covered how to use config file for database connection parameters

  • @radhakrishnanaik5656
    @radhakrishnanaik5656 2 роки тому +2

    You did great job and explained in simple steps.can you please prepare a video on exporting CSV from postgreySQL to python in pipeline?

    • @techTFQ
      @techTFQ  2 роки тому

      thank you Naik and sure will consider it for the future

  • @rubang973
    @rubang973 2 роки тому +1

    Thx buddy

    • @techTFQ
      @techTFQ  2 роки тому

      Glad you liked it

  • @itsupportbyharshit6285
    @itsupportbyharshit6285 Рік тому

    thanks

  • @malavans
    @malavans Рік тому

    Excellent video!!! One thing to clarify, what’s the difference between connecting this through SQLAlchemy with psycopg2 driver and connecting via psycopg2 driver straight away.

  • @MunishReddy
    @MunishReddy Рік тому

    This is amazing stuff. Thank you, brother. I am trying to send the outputs I got in python to the database. Like I am reading valves from my plc using the OPC UA server via python. Now I want to send those values to my PostgreSQL database. Any help would be appreciated. Thank you very much again.

  • @mkgeidam
    @mkgeidam Рік тому

    Excellent Python Tutorials keep it up!!! @techTFQ

  • @cruizersofthemilleni
    @cruizersofthemilleni Рік тому

    Thank you so much. Your video was really helpful. Do you have similar videos on pandas data frame using PostgreSQL? Thanks again.

  • @ha-tibas4208
    @ha-tibas4208 Рік тому

    es lindo

  • @GuillermoPalchik
    @GuillermoPalchik 10 місяців тому

    Great video. How does one go about creating, storing, and using the config file?

  • @pyalgoGPT
    @pyalgoGPT Рік тому

    As a token of gratitude, I can buy your Udemy course or give a 5satr rating... God bless you. Create a video on polar with postgres

  • @yaminadjoudi4357
    @yaminadjoudi4357 2 роки тому +1

    Thank you very much, can you please show as how to connect our model machine learning application to python?

    • @techTFQ
      @techTFQ  2 роки тому +2

      Your welcome 🙏🏼
      I am planning to make videos on machine learning using python in the near future so hopefully I will cover this at that point in time..
      Thank you for the suggestion, will definitely consider this 🙂

    • @yaminadjoudi4357
      @yaminadjoudi4357 2 роки тому +1

      @@techTFQ thank you for responding please for especially deep learning.. good luck

    • @techTFQ
      @techTFQ  2 роки тому

      Your welcome 🙏🏼
      Sure focusing on data science concepts for the next few months and then will move on to machine learning and then deep learning..
      Thanks again for the suggestion and the support. Truly appreciate it ☺️

  • @tejaskifamily
    @tejaskifamily 2 роки тому

    please create a video how to import data from CSV or excel file (of MB or GB data size) in tables automatically using python.

  • @vinoddevasani
    @vinoddevasani Рік тому

    This is awesome, But can we print the column names also in the Console/Output? Your code is just displaying the data.

  • @hkfc96
    @hkfc96 6 місяців тому

    @techTFQ Thanks for the video.
    Please provide the updated link for the script.

  • @TheToric
    @TheToric 2 роки тому

    given that the context manager does not close the connection, is there any advantage of putting the connection under a contex manager?

  • @timtech9361
    @timtech9361 2 роки тому +1

    Question. When creating the table, for the PRIMARY KEY which is id. Can you use SERIAL instead of INT? Asking since
    SERIAL will automatically address this as the PRIMARY KEY and the id will always be unique? I am assuming since the id will not have duplicates.

    • @techTFQ
      @techTFQ  2 роки тому +1

      Yea you can use SERIAL as the data type for the primary key ID column..
      I just used INT for this particular example

  • @siddhusathi
    @siddhusathi 2 роки тому

    Hello, can you please explain how to fetch million rows from postgresql with backend API and pass to frontend framework. Thanks in advance

  • @CaribouDataScience
    @CaribouDataScience Рік тому

    How would we insert a dataframe into a pg database?

  • @sathiyanarayanansrinivasan5489
    @sathiyanarayanansrinivasan5489 7 місяців тому

    Could you please also explain how to call postgresql file from python? instead of just executing DDL or DML statement directly