手机
当前位置:查字典教程网 >脚本专栏 >python >python文件读写并使用mysql批量插入示例分享(python操作mysql)
python文件读写并使用mysql批量插入示例分享(python操作mysql)
摘要:复制代码代码如下:#-*-coding:utf-8-*-'''Createdon2013年12月9日@author:hhdys'''impo...

复制代码 代码如下:

# -*- coding: utf-8 -*-

'''

Created on 2013年12月9日

@author: hhdys

'''

import os

import mysql.connector

config = {

'user': 'root',

'password': '******',

'host': '127.0.0.1',

'database': 'test',

'raise_on_warnings': True,

}

cnx = mysql.connector.connect(**config)

class ReadFile:

def readLines(self):

f = open("E:/data/2013-11-5.txt", "r", 1, "utf-8")

i=0

list=[]

for line in f:

strs = line.split("t")

if len(strs) != 5:

continue

data=(strs[0], strs[1], strs[2], strs[3], strs[4].replace("n",""))

list.append(data)

cursor=cnx.cursor()

sql = "insert into data_test(uid,log_date,fr,is_login,url)values(%s,%s,%s,%s,%s)"

if i>5000:

cursor.executemany(sql,list)

cnx.commit()

print("插入")

i=0

list.clear()

i=i+1

if i>0:

cursor.executemany(sql,list)

cnx.commit()

cnx.close()

f.close()

print("ok")

def listFiles(self):

d = os.listdir("E:/data/")

return d

if __name__ == "__main__":

readFile = ReadFile()

readFile.readLines()

【python文件读写并使用mysql批量插入示例分享(python操作mysql)】相关文章:

python使用PyV8执行javascript代码示例分享

python定时器使用示例分享

python中cPickle用法例子分享

python多线程http下载实现示例

wxPython中文教程入门实例

python抓取豆瓣图片并自动保存示例学习

python求素数示例分享

python删除文件示例分享

python聊天程序实例代码分享

pyside写ui界面入门示例

精品推荐
分类导航