Python实现将SQLite中的数据直接输出为CVS的方法示例
本文实例讲述了Python实现将SQLite中的数据直接输出为CVS的方法。分享给大家供大家参考,具体如下:
对于SQLite来说,目前查看还是比较麻烦,所以就像把SQLite中的数据直接转成Excel中能查看的数据,这样也好在Excel中做进一步分数据处理或分析,如前面文章中介绍的《使用Python程序抓取新浪在国内的所有IP》。从网上找到了一个将SQLite转成CVS的方法,贴在这里,供需要的朋友使用:
importsqlite3 importcsv,codecs,cStringIO classUnicodeWriter: """ ACSVwriterwhichwillwriterowstoCSVfile"f", whichisencodedinthegivenencoding. """ def__init__(self,f,dialect=csv.excel,encoding="utf-8",**kwds): #Redirectoutputtoaqueue self.queue=cStringIO.StringIO() self.writer=csv.writer(self.queue,dialect=dialect,**kwds) self.stream=f self.encoder=codecs.getincrementalencoder(encoding)() defwriterow(self,row): self.writer.writerow([unicode(s).encode("utf-8")forsinrow]) #FetchUTF-8outputfromthequeue... data=self.queue.getvalue() data=data.decode("utf-8") #...andreencodeitintothetargetencoding data=self.encoder.encode(data) #writetothetargetstream self.stream.write(data) #emptyqueue self.queue.truncate(0) defwriterows(self,rows): forrowinrows: self.writerow(row) conn=sqlite3.connect('ipaddress.sqlite3.db') c=conn.cursor() c.execute('select*fromipdata') writer=UnicodeWriter(open("export_data.csv","wb")) writer.writerows(c)
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python常见数据库操作技巧汇总》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。