基于读取 URL 文件,我在 Python 2.7 中构建了一个带有 6 个变量的 sqlite 数据库和表。
我使用 JSON 并创建了一个字典。该代码可以很好地读取所有内容并循环遍历键和值。
我需要将它插入我的表中。那是我有点失落的地方。我将提供代码,我认为我的漏洞会很明显。
import json
import urllib2
#Read file and print a line
webFD=urllib2.urlopen("http://rasinsrv07.cstcis.cti.depaul.edu/CSC455/assignment4.txt")
tweet = webFD.readline()
tweet
#create dictionary
dictt=json.loads(tweet)
#print dictionary
dictt.keys()
#print values
dictt.values()
#loop through tweets
for (key, value) in dictt.items():
print key, '->', value
#Created the DB
import sqlite3
conn = sqlite3.connect('twitter.db')
c = conn.cursor()
#Created the table for the tweets
c.execute("CREATE TABLE Tweet(created_at, id, text, source, in_reply_to_user_ID,retweet_Count)")
这是我的断开连接。想要将这些推文(dict 中的 6 个键和值)加载到 Tweet 表中:
for elt in tweet:
currentRow = elt[:-1].split(", ")
insert = """insert into Tweet values ('%s', '%s', '%s', '%s', '%s', '%s')""" %("created_at", "id", "text", 'source', 'in_reply_to_user_ID', 'retweet_Count')
print insert