如何使用 urllib 从 table 和 fetch/open 每个 link 检索行?
How do I retrieve row from table and fetch/open each link using urllib?
我是 Mysqldb 和 Python 的新手。我设法将所有链接存储到 table 中。现在我想检索这些链接并使用 urllib
获取它们。我的代码应该将它们保存到 Mysql table .
import MySQLdb
import urllib
mydb = MySQLdb.connect(
host='localhost',
user='root',
passwd='shailang',
db='urls')
cursor = mydb.cursor()
with open ("s.txt","r") as file:
for line in file:
cursor.execute("INSERT INTO url(links) VALUES(%s)", line)
cursor.execute("SELECT * FROM url")
links = cursor.fetchall()
for row in links:
page = urllib.urlopen(row[0])
text = page.read()
#close the connection to the database.
mydb.commit()
cursor.close()
print "Done"
在 for
循环中,使用 row[0]
而不是 row
。
for row in links:
page = urllib.urlopen(row[0])
text = page.read()
数据库中的一条记录可以有多个值。 row
变量是一个元组(包含特定记录的列的值)并且 links
变量是一个列表(包含表示记录的元组)。
因为你只有一列,而你想要那一列的数据,我们需要使用row[0]
。
我是 Mysqldb 和 Python 的新手。我设法将所有链接存储到 table 中。现在我想检索这些链接并使用 urllib
获取它们。我的代码应该将它们保存到 Mysql table .
import MySQLdb
import urllib
mydb = MySQLdb.connect(
host='localhost',
user='root',
passwd='shailang',
db='urls')
cursor = mydb.cursor()
with open ("s.txt","r") as file:
for line in file:
cursor.execute("INSERT INTO url(links) VALUES(%s)", line)
cursor.execute("SELECT * FROM url")
links = cursor.fetchall()
for row in links:
page = urllib.urlopen(row[0])
text = page.read()
#close the connection to the database.
mydb.commit()
cursor.close()
print "Done"
在 for
循环中,使用 row[0]
而不是 row
。
for row in links:
page = urllib.urlopen(row[0])
text = page.read()
数据库中的一条记录可以有多个值。 row
变量是一个元组(包含特定记录的列的值)并且 links
变量是一个列表(包含表示记录的元组)。
因为你只有一列,而你想要那一列的数据,我们需要使用row[0]
。