Created
February 20, 2017 14:10
-
-
Save checkaayush/afb49845c79886687b9110d9580f5cc5 to your computer and use it in GitHub Desktop.
Exports MySQL tables to .csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Exports MySQL tables to CSV""" | |
import os | |
import pymysql | |
import pandas as pd | |
HOST = 'database_host_here' | |
DATABASE = 'database_name_here' | |
USER = 'mysql_username_here' | |
PASSWORD = 'your_password_here' | |
DESTINATION = 'destination_directory_here' | |
def ensure_dirs(path): | |
if not os.path.exists(path): | |
os.makedirs(path) | |
def table_names_query(): | |
return """SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES | |
WHERE TABLE_SCHEMA = '{}'""".format(DATABASE) | |
def column_names_query(table_name): | |
return """SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS | |
WHERE TABLE_SCHEMA = '{0}' | |
AND TABLE_NAME = '{1}'""".format(DATABASE, table_name) | |
def column_names(cursor, table_name): | |
cursor.execute(column_names_query(table_name)) | |
return [tup[0] for tup in list(cursor.fetchall())] | |
def table_names(cursor): | |
cursor.execute(table_names_query()) | |
return [tup[0] for tup in list(cursor.fetchall())] | |
def chunks_to_csv(chunks, filepath): | |
header = True | |
for chunk in chunks: | |
chunk.to_csv(filepath, mode='a', header=header, | |
index=False, encoding='utf-8') | |
header = False | |
def main(): | |
ensure_dirs(DESTINATION) | |
conn = pymysql.connect(host=HOST, user=USER, passwd=PASSWORD, db=DATABASE) | |
cursor = conn.cursor() | |
query = 'SELECT * FROM {table_name}' | |
for table_name in table_names(cursor): | |
chunks = pd.read_sql(query.format(table_name=table_name), conn, | |
columns=column_names(cursor, table_name), | |
chunksize=1000) | |
filepath = os.path.join(DESTINATION, ''.join([table_name, '.csv'])) | |
if not os.path.exists(filepath): | |
chunks_to_csv(chunks, filepath) | |
cursor.close() | |
conn.close() | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment