Skip to content
Advertisement

Python – Printing output into a SQL Table

I have a python script that can extract the metadata from pictures in a directory. As of right now they go into a text file in table format and the current output looks like this:

Here is the current script I have:

The script opens the directory and for each photo it takes the filename, size, type, height, width, DPI, mode and Frames. And as I stated it prints into a text file. Instead of going to a print file I would like for the output to be put into a SQL table that is already created. I have some lines of code that connects me to the database table and those are:

So what I would like to know is, How do i print the output to the table?

Advertisement

Answer

Assuming you already have the table created according to the convention followed while printing the data, a simple INSERT query should suffice.

That being said, instead of line += " |" you would have to use line += ","

Following your convention, it should go something like :

You can’t Print stuff into a mysql db per se.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement