python excel 內容寫入mysql
import xlrd
import pymysql
data = xlrd.open_workbook('C:\Users\yanghui\Desktop\11.xls')
sheet = data.sheet_by_index(0)
conn = pymysql.connect(
host='127.0.0.1',
port=3306,
user='root',
passwd='',
db='gp',
charset='utf8'
)
cursor = conn.cursor()
# ['證券程式碼', '證券名稱', '成交日期', '成交價格', '成交數量', '剩餘數量', '業務名稱', '手續費', '印花稅', '過戶費']
# ['002594', '比亞迪', '2018-8-2', 40.71, -100.0, 100.0, '證券賣出', 5.0, 4.07, 0.0]
query = """INSERT INTO deal (code,name,rq,price,sl1,sl2,mm,charge,stamp_duty,transfer_fee) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)"""
for r in range(1, sheet.nrows):
code = sheet.cell(r, 0).value
name = sheet.cell(r, 1).value
rq = sheet.cell(r, 2).value
price = sheet.cell(r, 3).value
sl1 = sheet.cell(r, 4).value
sl2 = sheet.cell(r, 5).value
mm = sheet.cell(r, 6).value
charge = sheet.cell(r, 7).value
stamp_duty = sheet.cell(r, 8).value
transfer_fee = sheet.cell(r, 9).value
values = (code, name, rq, price, sl1, sl2, mm,
charge, stamp_duty, transfer_fee)
cursor.execute(query, values)
cursor.close()
conn.commit()
conn.close()
print('Done!')
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2459/viewspace-2806463/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python操作檔案寫入內容Python
- python自動開啟瀏覽器下載zip,並且提取內容寫入excelPython瀏覽器Excel
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- canvas 寫入文字內容Canvas
- Python-使用openpyxl讀取excel內容PythonExcel
- 如何讓excel單元格內只能輸入指定內容?Excel
- poi解析Excel內容Excel
- Python批量匯入Excel資料到MySQLPythonExcelMySql
- git將指定內容寫入檔案Git
- offsetLeft offsetTop // DOM操作,之寫入內容
- Python 利用pandas和mysql-connector獲取Excel資料寫入到MySQL資料庫PythonMySqlExcel資料庫
- python 讀寫 excelPythonExcel
- wps的excel中的單元格限定輸入的內容Excel
- 帶格式寫入excelExcel
- python openpyxl讀寫excelPythonExcel
- python常識系列07-->python利用xlwt寫入excel檔案PythonExcel
- MySQL部分內容整理MySql
- 將dataGridView內容匯出到Excel檔案ViewExcel
- python讀寫excel檔案PythonExcel
- python讀寫excel表操作PythonExcel
- poi解析Excel,遍歷表結構,獲取單元格內容,拼接sql語句,寫入TXT檔案ExcelSQL
- Python實現對比兩個Excel資料內容並標出不同PythonExcel
- python基礎內容Python
- python面試內容Python面試
- EasyExcel 輕鬆靈活讀取Excel內容Excel
- 寫在部落格內容之前
- matplotlib 畫圖直接寫入excelExcel
- python讀寫Excel表格程式碼PythonExcel
- 把list集合的內容寫入到Xml中,通過XmlDocument方式寫入Xml檔案中XML
- MySQL 之索引常見內容MySql索引
- Python提取文字指定內容Python
- 在excel中某些單元格內批量增加相同的內容Excel
- Excel還能限制輸入內容?其實這樣能有效避免人員輸入錯誤Excel
- Makefile書寫命令相關內容
- laravel結合maatwebsite/excel包,匯出excel,將部分內容設定不可LaravelWebExcel
- Mysql增量寫入Hdfs(一) --將Mysql資料寫入Kafka TopicMySqlKafka
- JDBC mysql 相關內容筆記JDBCMySql筆記
- 徹底刪除mysql容器內容MySql