Skip to content

Instantly share code, notes, and snippets.

View liliankotvan's full-sized avatar
🌉
Data Engineer

LILIAN KOTVAN liliankotvan

🌉
Data Engineer
View GitHub Profile
@shitalmule04
shitalmule04 / MySQL_Export.py
Last active April 20, 2024 11:32
Python Script to export SQLite database tables into CSV file.
import sqlite3 as sql
import os
import csv
from sqlite3 import Error
try:
# Connect to database
conn=sql.connect('mydb.db')