Browse Source

ig tag 修改內容

zooeytsai 3 years ago
parent
commit
9cc966f4c1
1 changed files with 10 additions and 3 deletions
  1. 10 3
      ig_tags/ig_selenium.py

+ 10 - 3
ig_tags/ig_selenium.py

@@ -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