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

  Рет қаралды 141,572

techTFQ

techTFQ

Күн бұрын

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

Пікірлер: 169
@girijashamak9142
@girijashamak9142 2 жыл бұрын
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 жыл бұрын
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
@gabip265
@gabip265 Жыл бұрын
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 Жыл бұрын
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 4 ай бұрын
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 Жыл бұрын
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.
@mtmanalyst
@mtmanalyst Жыл бұрын
Excellent !!! Thank you Morgan
@kunrath
@kunrath 2 жыл бұрын
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 !!!! 🙏🙏🙏
@okondivine4918
@okondivine4918 Жыл бұрын
This a fantastic video....Pure gold!
@dimplesantoshi8561
@dimplesantoshi8561 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 :)
@hoanglam2814
@hoanglam2814 Жыл бұрын
short and concise. thank you!
@ShenderRamos
@ShenderRamos Жыл бұрын
Great video, well explained, organized and efficient
@user-os4lj3pi4q
@user-os4lj3pi4q 2 ай бұрын
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.
@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.
@shakearound5789
@shakearound5789 7 ай бұрын
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 6 ай бұрын
Thank you . Glad it helped
@user-bl4nq4qg9u
@user-bl4nq4qg9u 3 ай бұрын
The explanation is really clear! It is easy to understand what you are doing. Great job!
@Makingdifference100
@Makingdifference100 2 жыл бұрын
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
@shiblyaziz9553
@shiblyaziz9553 2 жыл бұрын
Thank you! Absolutely a fantastic video!!!!!. I love your teaching method.
@techTFQ
@techTFQ 2 жыл бұрын
Thank you 🙏🏼 Glad this helped
@YoYoNo.1official
@YoYoNo.1official 4 ай бұрын
THanks Bro Luv From India❤️
@diegofernandosotoflores7175
@diegofernandosotoflores7175 9 ай бұрын
Gran video, acarreando el proyecto. Un grande Thoufiq
@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.
@Rainmakeroffire
@Rainmakeroffire Жыл бұрын
This was very helpful man, thanks a lot.
@maxx27i
@maxx27i 2 жыл бұрын
Very nice explanation! 👏
@karunakaranr2473
@karunakaranr2473 Жыл бұрын
I have been watching your tutorials and really awesome.. Thank you for your time and effort..
@ratneshraj4653
@ratneshraj4653 Жыл бұрын
Please continue making more dedicated videos in Python just like SQL. THANKS IN ADVANCE
@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!!!
@mickyelmb
@mickyelmb 2 жыл бұрын
Great tutorial, very helpful. Thank you for posting it.
@techTFQ
@techTFQ 2 жыл бұрын
Glad this helped
@Hlangwaneamukelani
@Hlangwaneamukelani Жыл бұрын
Great stuff, Thank You.
@byte0me
@byte0me Ай бұрын
Super helpful thank you!
@pushkarratnaparkhi2205
@pushkarratnaparkhi2205 Жыл бұрын
very useful video. Thanks a lot.
@anurasenarathna1703
@anurasenarathna1703 2 жыл бұрын
Very informative and very clear. Thank you for sharing your knowledge.
@techTFQ
@techTFQ 2 жыл бұрын
Your welcome Anura, Glad this helped
@anduamlaktadesse9284
@anduamlaktadesse9284 Жыл бұрын
Thank you sir for everything! It's really appreciated!
@techTFQ
@techTFQ Жыл бұрын
Glad you like them
@sacrupe
@sacrupe 4 ай бұрын
this video was really helpful, thank you
@ErikS-
@ErikS- Жыл бұрын
Excellent video.
@anubratadas1
@anubratadas1 8 ай бұрын
Thank you for this great video
@alexandrelucas5621
@alexandrelucas5621 Жыл бұрын
Very informative! Thanks!
@techTFQ
@techTFQ Жыл бұрын
Glad you liked it
@rics6035
@rics6035 2 жыл бұрын
great video! thanks a lot
@azeszterifi
@azeszterifi 11 ай бұрын
just brilliant!
@mohammedshahil4898
@mohammedshahil4898 2 жыл бұрын
Really helpful 👌🏻 Keep up the good work🙌🏻👍🏻
@techTFQ
@techTFQ 2 жыл бұрын
Thank you hero ❤️🙏🏼
@stephenmusangi8976
@stephenmusangi8976 Жыл бұрын
Awesome video
@WICKED21SUNNY
@WICKED21SUNNY 2 жыл бұрын
very help video for me as I am new to python programming
@Simple.Simple779
@Simple.Simple779 Жыл бұрын
you are my life saver...
@hoanglam2814
@hoanglam2814 Жыл бұрын
love this one!
@makhmud_jumanazarov
@makhmud_jumanazarov Жыл бұрын
thank you for useful content
@ROMAN-zu3wu
@ROMAN-zu3wu 2 жыл бұрын
Great tutorial bro
@status_dev
@status_dev Жыл бұрын
Thx for the video, very useful and easy to understand! great job!😀😀😀😀😀😀😀😀SUPER VIDEO
@techTFQ
@techTFQ Жыл бұрын
Glad you liked it!!
@kondanikhilkumar2198
@kondanikhilkumar2198 3 ай бұрын
Attracted to subscribe,Thank you
@mariacamiladurangobarrera2821
@mariacamiladurangobarrera2821 Жыл бұрын
Thank you!
@fathimafarahna2633
@fathimafarahna2633 2 жыл бұрын
Superb.. You have an amazing explaining skills👍👍👍
@techTFQ
@techTFQ 2 жыл бұрын
Thank you ❤️
@sssaamm29988
@sssaamm29988 Жыл бұрын
Wow,just one watch i could grasp most of the content.Havent felt boring at any point of time.great job!
@techTFQ
@techTFQ Жыл бұрын
Glad you liked it Sampath
@SanjiVSwaraJ
@SanjiVSwaraJ Жыл бұрын
Awesome..
@MyrLin8
@MyrLin8 2 ай бұрын
on first blush this seems quite good :) subscribed.
@Latif127
@Latif127 7 ай бұрын
Thoufiq, it is a very clear, easy and helpful tutorial, you covered a lot. Thank you.
@techTFQ
@techTFQ 6 ай бұрын
Welcome:)
@samucancld
@samucancld 2 жыл бұрын
buenísimo loko
@nadeeradulan9231
@nadeeradulan9231 Жыл бұрын
Thanks Bro!
@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
@bendibhafed1687
@bendibhafed1687 Жыл бұрын
Great job Mr. Thoufiq.
@techTFQ
@techTFQ Жыл бұрын
Thank you Hafed 🙏🏼
@FIXENDIARY
@FIXENDIARY 4 күн бұрын
Superb
@sowmiyanadarajan8041
@sowmiyanadarajan8041 Жыл бұрын
Thanks for the video TFQ..I want more python tutorial and sql as well
@techTFQ
@techTFQ Жыл бұрын
Noted bro , I’ll get to python soon
@akashsivasubramanian4067
@akashsivasubramanian4067 2 жыл бұрын
very clear. thanks a lot.
@techTFQ
@techTFQ 2 жыл бұрын
You are welcome Akash!
@gururajarao7833
@gururajarao7833 10 ай бұрын
very good video. You could have also covered how to use config file for database connection parameters
@yayasssamminna
@yayasssamminna 19 күн бұрын
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 !!!
@umaanil3344
@umaanil3344 2 жыл бұрын
Great tutorial..👏👏
@techTFQ
@techTFQ 2 жыл бұрын
Thank you Anil 🙏🏼
@radhakrishnanaik5656
@radhakrishnanaik5656 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
@cruizersofthemilleni
@cruizersofthemilleni 11 ай бұрын
Thank you so much. Your video was really helpful. Do you have similar videos on pandas data frame using PostgreSQL? Thanks again.
@GuillermoPalchik
@GuillermoPalchik 9 ай бұрын
Great video. How does one go about creating, storing, and using the config file?
@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.
@jessemonisha8018
@jessemonisha8018 Жыл бұрын
Super
@saic3149
@saic3149 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..
@zauraxmed9622
@zauraxmed9622 Жыл бұрын
thank you
@gvs485
@gvs485 5 ай бұрын
tysm!
@younesdeveloper
@younesdeveloper 3 ай бұрын
top one
@kashmirshadows8150
@kashmirshadows8150 2 жыл бұрын
Thank you Thoufiq
@techTFQ
@techTFQ 2 жыл бұрын
Your welcome 🙏🏼
@JCokee
@JCokee Жыл бұрын
This was 22 minutes and 57 seconds of pure AWESOME! Thank you so much! Python & PostgreSQL 101.
@sivahanuman4466
@sivahanuman4466 Жыл бұрын
Great sir
@techTFQ
@techTFQ Жыл бұрын
Thank you ☺️
@nihalmohammed8093
@nihalmohammed8093 Жыл бұрын
111,000th Subscriber
@anilsana105
@anilsana105 Жыл бұрын
clear one
@techTFQ
@techTFQ Жыл бұрын
Thank you :)
@ruphashree
@ruphashree 6 ай бұрын
Thank you sir
@techTFQ
@techTFQ 6 ай бұрын
Welcome
@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?
@rubang973
@rubang973 2 жыл бұрын
Thx buddy
@techTFQ
@techTFQ 2 жыл бұрын
Glad you liked it
@mohammedkarimuddin8472
@mohammedkarimuddin8472 10 ай бұрын
Which database is mostly used in IT industry Oracle or PostgreSql. Can you please tell me
@itsupportbyharshit6285
@itsupportbyharshit6285 Жыл бұрын
thanks
@vinoddevasani
@vinoddevasani Жыл бұрын
This is awesome, But can we print the column names also in the Console/Output? Your code is just displaying the data.
@pusapatinarasimharaju956
@pusapatinarasimharaju956 Жыл бұрын
sir what is the use of python to postgresql.we can dirctly write sql in postgresql in database for all the operations.please reply
@timtech9361
@timtech9361 2 жыл бұрын
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 жыл бұрын
Yea you can use SERIAL as the data type for the primary key ID column.. I just used INT for this particular example
@hkfc96
@hkfc96 5 ай бұрын
@techTFQ Thanks for the video. Please provide the updated link for the script.
@ravendrink2710
@ravendrink2710 Жыл бұрын
Could you please tell me how to store or print, how many rows are getting affected after performing a DML.
@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.
@yaminadjoudi4357
@yaminadjoudi4357 2 жыл бұрын
Thank you very much, can you please show as how to connect our model machine learning application to python?
@techTFQ
@techTFQ 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 жыл бұрын
@@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 ☺️
@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
@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
@KVDBHRZNS
@KVDBHRZNS Жыл бұрын
what is the name of the editor you are using?
@algoJamming
@algoJamming 2 жыл бұрын
Hi ! Is it possible to run this python script automatically (daily) and mail the results in a mail ??
PostgreSQL in Python - Crash Course
16:06
NeuralNine
Рет қаралды 62 М.
We Got Expelled From Scholl After This...
00:10
Jojo Sim
Рет қаралды 36 МЛН
Каха инструкция по шашлыку
01:00
К-Media
Рет қаралды 8 МЛН
Just try to use a cool gadget 😍
00:33
123 GO! SHORTS
Рет қаралды 63 МЛН
Introduction to PostgreSQL Tutorial - Part 1
17:13
Database Star
Рет қаралды 32 М.
SQLAlchemy: The BEST SQL Database Library in Python
16:39
ArjanCodes
Рет қаралды 50 М.
PostgreSQL vs MySQL
6:33
IBM Technology
Рет қаралды 302 М.
PostgreSQL CRASH COURSE - Learn PostgreSQL in 2022
50:26
Troy Amelotte
Рет қаралды 204 М.