python Python,Sqlite - 使用DbImport类从CSV导入数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python,Sqlite - 使用DbImport类从CSV导入数据相关的知识,希望对你有一定的参考价值。

import pandas as pd

df_data = pd.read_csv("fileName.csv", sep='\t')

# DbImport: https://gist.github.com/Razzo78/3580cf9ed1f3c9a34484ab887b6dbf5d
db = DbImport("myDb.sqlite")

data_ins = {"filed_id": -1,
            "filed_name": ""
            }

for index, row in df_data.iterrows():
    # Create an object tot import data in to the database
    data_ins['filed_id'] = int(row['CSV ID'])
    data_ins['filed_name'] = string(row['CSV NAME']) 

    db.insert_new_table_1_name(data_ins)

以上是关于python Python,Sqlite - 使用DbImport类从CSV导入数据的主要内容,如果未能解决你的问题,请参考以下文章

Python教程:ORM连接Sqlite数据库,软件架构基础

在python和sqlite web应用程序中的url编码

如何使 SQLite 数据库文件作为文本文件可读?

sqlite3:连接到云中的数据库(S3)

树莓派学习笔记——交叉编译练习之SQLite3安装

python 用Python的Sqlite3。 #python#sqlite3 #database