码迷,mamicode.com
首页 > 数据库 > 详细

用Python向MySQL数据库插入数据

时间:2016-08-26 22:34:29      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:

最近一直在学习MySQL数据库,很感兴趣。这次我做了一个简单的尝试,使用Python3.4与MySQL数据库进行交互,将一份从雪球网上下载的某股票数据上传至MySQL数据库。仅为初学者提供参考,高手请不要见笑。

代码已上传至github,欢迎关注:

https://github.com/JoshuaHe2015/Python_Code/blob/master/MySQL_test.py

 1 import pymysql
 2 f = open(rD:\Data\SZ000839.csv)# Load the csv
 3 header = True
 4 conn = pymysql.connect(localhost,root,password,database)
 5 cur = conn.cursor()
 6 
 7 for line in f:
 8     if header:
 9         header = False # Skip the header
10     else:
11         data = line.replace(\",‘‘).replace(\n,‘‘).split(,)
12         cur.execute("INSERT INTO SZ000839(symbol,_date,_open,high,low,_close,volume) VALUES (‘%s‘,‘%s‘,‘%s‘,‘%s‘,‘%s‘,‘%s‘,‘%s‘)" % tuple(data))
13 
14 conn.commit()# Commit the transaction
15 f.close() # Don‘t forget to close all of these sources
16 cur.close()
17 conn.close()
18 print(finished!)

 

用Python向MySQL数据库插入数据

标签:

原文地址:http://www.cnblogs.com/HeYanjie/p/5811814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!