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

Sdílet
Vložit
  • čas přidán 27. 07. 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

Komentáře • 172

  • @girijashamak9142
    @girijashamak9142 Před 2 lety +47

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

      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

  • @skillhorizon
    @skillhorizon Před 2 hodinami

    God bless you for sharing valuable knowledge with practical example. Thank you so much.

  • @gabip265
    @gabip265 Před rokem +4

    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.

  • @mtmanalyst
    @mtmanalyst Před rokem +4

    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

  • @prathagautam9872
    @prathagautam9872 Před 6 měsíci +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! 💯

  • @ruthaipoh8373
    @ruthaipoh8373 Před 2 lety +4

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

  • @NiceChange
    @NiceChange Před rokem

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

  • @DanjumaMuhammad
    @DanjumaMuhammad Před rokem

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

  • @dogedingo1535
    @dogedingo1535 Před rokem

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

  • @NiceChange
    @NiceChange Před rokem

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

  • @user-os4lj3pi4q
    @user-os4lj3pi4q Před 4 měsíci

    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.

  • @dimplesantoshi8561
    @dimplesantoshi8561 Před 2 lety +2

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

  • @mtmanalyst
    @mtmanalyst Před rokem +1

    Excellent !!!
    Thank you
    Morgan

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

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

  • @shakearound5789
    @shakearound5789 Před 8 měsíci +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  Před 7 měsíci

      Thank you . Glad it helped

  • @okondivine4918
    @okondivine4918 Před rokem

    This a fantastic video....Pure gold!

  • @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 !!!!
    🙏🙏🙏

  • @user-wb1ov4vh9x
    @user-wb1ov4vh9x Před 14 dny

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

  • @Makingdifference100
    @Makingdifference100 Před 2 lety +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  Před 2 lety

      Thank you so much Santos and sure will do

  • @user-bl4nq4qg9u
    @user-bl4nq4qg9u Před 4 měsíci

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

  • @hoanglam2814
    @hoanglam2814 Před rokem

    short and concise. thank you!

  • @ShenderRamos
    @ShenderRamos Před rokem

    Great video, well explained, organized and efficient

  • @MrutyunjayNayak
    @MrutyunjayNayak Před rokem

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

  • @diegofernandosotoflores7175
    @diegofernandosotoflores7175 Před 11 měsíci

    Gran video, acarreando el proyecto. Un grande Thoufiq

  • @ashaoluayanfe7474
    @ashaoluayanfe7474 Před rokem

    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.

  • @shiblyaziz9553
    @shiblyaziz9553 Před 2 lety +2

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

    • @techTFQ
      @techTFQ  Před 2 lety

      Thank you 🙏🏼
      Glad this helped

  • @maxx27i
    @maxx27i Před 2 lety

    Very nice explanation! 👏

  • @YoYoNo.1official
    @YoYoNo.1official Před 5 měsíci +1

    THanks Bro Luv From India❤️

  • @ratneshraj4653
    @ratneshraj4653 Před rokem

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

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

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

    • @techTFQ
      @techTFQ  Před 2 lety

      Your welcome Anura,
      Glad this helped

  • @sivajyothichandra
    @sivajyothichandra Před rokem

    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.

  • @pushkarratnaparkhi2205

    very useful video. Thanks a lot.

  • @pranshulsingh2216
    @pranshulsingh2216 Před rokem

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

  • @Rainmakeroffire
    @Rainmakeroffire Před rokem

    This was very helpful man, thanks a lot.

  • @karunakaranr2473
    @karunakaranr2473 Před rokem

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

  • @mickyelmb
    @mickyelmb Před 2 lety +2

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

  • @nigarsultana1739
    @nigarsultana1739 Před rokem

    Thank you so much for your efforts!!!

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

    Super helpful thank you!

  • @anubratadas1
    @anubratadas1 Před 9 měsíci

    Thank you for this great video

  • @sacrupe
    @sacrupe Před 6 měsíci

    this video was really helpful, thank you

  • @WICKED21SUNNY
    @WICKED21SUNNY Před 2 lety

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

  • @Hlangwaneamukelani
    @Hlangwaneamukelani Před rokem

    Great stuff, Thank You.

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

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

  • @ErikS-
    @ErikS- Před rokem

    Excellent video.

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

    Attracted to subscribe,Thank you

  • @rics6035
    @rics6035 Před 2 lety

    great video! thanks a lot

  • @MyrLin8
    @MyrLin8 Před 4 měsíci

    on first blush this seems quite good :) subscribed.

  • @mohammedshahil4898
    @mohammedshahil4898 Před 2 lety +2

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

    • @techTFQ
      @techTFQ  Před 2 lety

      Thank you hero ❤️🙏🏼

  • @Simple.Simple779
    @Simple.Simple779 Před rokem

    you are my life saver...

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

    Very informative! Thanks!

  • @stephenmusangi8976
    @stephenmusangi8976 Před rokem

    Awesome video

  • @azeszterifi
    @azeszterifi Před rokem

    just brilliant!

  • @mkgeidam
    @mkgeidam Před rokem

    Excellent Python Tutorials keep it up!!! @techTFQ

  • @status_dev
    @status_dev Před rokem +1

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

  • @sssaamm29988
    @sssaamm29988 Před 2 lety +2

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

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

      Glad you liked it Sampath

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

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

  • @ROMAN-zu3wu
    @ROMAN-zu3wu Před 2 lety

    Great tutorial bro

  • @makhmud_jumanazarov
    @makhmud_jumanazarov Před rokem

    thank you for useful content

  • @festisanat1982
    @festisanat1982 Před rokem

    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

  • @Latif127
    @Latif127 Před 8 měsíci

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

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

    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 !!!

  • @hoanglam2814
    @hoanglam2814 Před rokem

    love this one!

  • @SanjiVSwaraJ
    @SanjiVSwaraJ Před rokem

    Awesome..

  • @bendibhafed1687
    @bendibhafed1687 Před rokem +1

    Great job Mr. Thoufiq.

    • @techTFQ
      @techTFQ  Před rokem

      Thank you Hafed 🙏🏼

  • @mariacamiladurangobarrera2821

    Thank you!

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

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

    • @techTFQ
      @techTFQ  Před 2 lety

      Noted bro , I’ll get to python soon

  • @FIXENDIARY
    @FIXENDIARY Před měsícem

    Superb

  • @samucancld
    @samucancld Před 2 lety

    buenísimo loko

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

    very clear. thanks a lot.

    • @techTFQ
      @techTFQ  Před 2 lety

      You are welcome Akash!

  • @nadeeradulan9231
    @nadeeradulan9231 Před rokem

    Thanks Bro!

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

    Great tutorial..👏👏

    • @techTFQ
      @techTFQ  Před 2 lety

      Thank you Anil 🙏🏼

  • @gururajarao7833
    @gururajarao7833 Před 11 měsíci

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

  • @sivahanuman4466
    @sivahanuman4466 Před rokem +1

    Great sir

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

    Thank you Thoufiq

    • @techTFQ
      @techTFQ  Před 2 lety

      Your welcome 🙏🏼

  • @saic3149
    @saic3149 Před 2 lety +2

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

    • @techTFQ
      @techTFQ  Před 2 lety

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

  • @younesdeveloper
    @younesdeveloper Před 4 měsíci

    top one

  • @radhakrishnanaik5656
    @radhakrishnanaik5656 Před 2 lety +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  Před 2 lety

      thank you Naik and sure will consider it for the future

  • @jessemonisha8018
    @jessemonisha8018 Před rokem

    Super

  • @zauraxmed9622
    @zauraxmed9622 Před rokem

    thank you

  • @gvs485
    @gvs485 Před 6 měsíci

    tysm!

  • @nihalmohammed8093
    @nihalmohammed8093 Před rokem +1

    111,000th Subscriber

  • @JCokee
    @JCokee Před rokem

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

  • @malavans
    @malavans Před rokem

    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.

  • @anilsana105
    @anilsana105 Před rokem +1

    clear one

  • @ruphashree
    @ruphashree Před 7 měsíci

    Thank you sir

  • @cruizersofthemilleni
    @cruizersofthemilleni Před rokem

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

  • @MunishReddy
    @MunishReddy Před rokem

    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.

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

    Thx buddy

  • @renzo3939
    @renzo3939 Před 4 měsíci

    thanks

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

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

  • @TheToric
    @TheToric Před 2 lety

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

  • @vinoddevasani
    @vinoddevasani Před rokem

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

  • @pyalgoGPT
    @pyalgoGPT Před rokem

    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

  • @ha-tibas4208
    @ha-tibas4208 Před rokem

    es lindo

  • @tejaskifamily
    @tejaskifamily Před 2 lety

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

  • @hkfc96
    @hkfc96 Před 6 měsíci

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

  • @mohammedkarimuddin8472
    @mohammedkarimuddin8472 Před 11 měsíci

    Which database is mostly used in IT industry Oracle or PostgreSql.
    Can you please tell me

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

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

    • @techTFQ
      @techTFQ  Před 2 lety +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 Před 2 lety +1

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

    • @techTFQ
      @techTFQ  Před 2 lety

      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 ☺️

  • @ankitg6454
    @ankitg6454 Před 9 měsíci

    usually people don't insert 3 records. They have a data file containing 1000s of records that are to be inserted. you could have explained how to do that in you video

  • @timtech9361
    @timtech9361 Před 2 lety +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  Před 2 lety +1

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