1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| mport pymysql.cursors
from sparkpost import SparkPost
import pandas as pd
from pandas import DataFrame
import openpyxl
from datetime import date
import write
import csv
import numpy
connection = pymysql.connect(host='',
user='',
passwd='',
db='',
charset='',
cursorclass=pymysql.cursors.DictCursor)
try:
with connection.cursor() as cursor:
requete = """
select *
from matable e
"""
cursor.execute(requete)
resultar = DataFrame(cursor.fetchall())
res = cursor.fetchall()
finally:
connection.close()
with open('output.csv', 'w') as fileout:
writer = csv.writer(fileout)
writer.writerows(res) |
Partager