从解析URL创建SQL DB

时间:2018-03-29 22:00:49

标签: python html sql database parsing

我正在尝试从我要解析的URL列表中获取SQL数据库。在网站上有我需要的txt信息,我想把它们放到数据库中进行一些过滤研究

我的代码是:

with open('file.txt', 'a') as f_out:
for i in range(100, 120):
data = 'www.website.com/{}\n'.format(i)
print(data)
f_out.write(data)

我想解析会是这样的:

 wget -i files.txt

最终结果如下:

MySQL or PostgreSQL of html files
import sqlite3
from sqlite3 import Error


def create_connection():
 """ create a database connection to a database that resides
 in the memory """
try:
conn = sqlite3.connect(':memory:')
print(sqlite3.version)
except Error as e:
print(e)
finally:
conn.close()

if __name__ == '__main__':
create_connection()

有人帮我做这个工作吗?

0 个答案:

没有答案