|
@@ -85,10 +85,17 @@ def hashtag():
|
|
|
print(tag.text)
|
|
|
hashtag.append(tag)
|
|
|
driver.close()
|
|
|
+
|
|
|
+ db = pymysql.connect(host='localhost',
|
|
|
+ user='root',
|
|
|
+ password='jondae350',
|
|
|
+ database='ig_tags')
|
|
|
cur = db.cursor()
|
|
|
- table.create_column('taiwan_food',db.types.text)
|
|
|
- values = [list([item]) for item in hashtag]
|
|
|
- cur.executemany('INSERT INTO ig_tags (taiwan_food) VALUES (%s)',values)
|
|
|
+ query = "ALTER TABLE ig_tags ADD taiwan_food TEXT(100)"
|
|
|
+ for i in hashtag:
|
|
|
+ cur.execute('INSERT INTO ig_tags (taiwan_food) VALUES (%s)', i)
|
|
|
+ db.commit()
|
|
|
+ db.close()
|
|
|
return hashtag
|
|
|
|
|
|
|