zooeytsai 3 år sedan
förälder
incheckning
b604dd4697
2 ändrade filer med 17 tillägg och 17 borttagningar
  1. 17 17
      ig_tags/ig_selenium.py
  2. 0 0
      ig_tags/tags.py

+ 17 - 17
ig_tags/ig_selenium.py

@@ -14,14 +14,14 @@ from selenium.webdriver.support import expected_conditions as ec
 # import dataset
 import pymysql
 pymysql.install_as_MySQLdb()
-from ig_tags import pd
 from ig_tags import setting
+from ig_tags import pd
 
 account = pd.account
 password = pd.password
 
-path = '/Users/zooeytsai/Downloads/chromedriver'
-sbaccount = account[1]
+path = 'C:\\Users\\user\\Downloads\\chromedriver_win32'
+sbaccount = account[2]
 sbpd = password[1]
 options = webdriver.ChromeOptions()
 # options.add_argument("--headless") # 視窗背後執行
@@ -29,7 +29,7 @@ options.add_argument("user-agent=%s" % setting.rua())
 
 
 def download_post():
-    hashtag = '寵物'
+    hashtag = '寵物蛋糕'
     url = f"https://www.instagram.com/explore/tags/{hashtag}/"
     s = Service(path)
     driver = webdriver.Chrome(service=s, options=options)
@@ -83,7 +83,7 @@ def download_post():
 
 
 def hashtag():
-    input_hashtag = 'pilo'
+    input_hashtag = 'pet_cake'
     collect_hashtag = []
     c=0
     result = download_post()[0]
@@ -112,28 +112,28 @@ def hashtag():
             c=0
     driver.close()
     print(collect_hashtag)
-    db = pymysql.connect(host='localhost',
-                         user='root',
-                         password='jondae350',
-                         database='ig_tags')
-    cur = db.cursor()
-    query_new_col = f"ALTER TABLE ig_tags.new_table ADD COLUMN {input_hashtag} VARCHAR(45) NULL"
+    db_company = pymysql.connect(host='db.ptt.cx',
+                                 user='choozmo',
+                                 password='pAssw0rd',
+                                 database='seo')
+    cur = db_company.cursor()
+    query_new_col = f"ALTER TABLE seo.ig_pet ADD COLUMN {input_hashtag} VARCHAR(45) NULL"
     cur.execute(query_new_col)
-    id_number = 1
-    cur.execute("select * from ig_tags.new_table order by id desc limit 1")
+    id_number = 0
+    cur.execute("select * from seo.ig_pet order by `index` desc limit 1")
     last_id = cur.fetchall()[0][0]
     insert_row = len(collect_hashtag)-last_id
     for i in range(0, insert_row):
-        query_insert = f"INSERT INTO ig_tags.new_table ({input_hashtag}) VALUES ('')"
+        query_insert = f"INSERT INTO seo.ig_pet ({input_hashtag}) VALUES ('')"
         cur.execute(query_insert)
     for i in collect_hashtag:
         i = i.replace('#', '')
-        query_update = f"UPDATE ig_tags.new_table SET {input_hashtag}='{i}' where id='{id_number}'"
+        query_update = f"UPDATE seo.ig_pet SET {input_hashtag}='{i}' where `index`='{id_number}'"
         cur.execute(query_update)
         id_number += 1
 
-    db.commit()
-    db.close()
+    db_company.commit()
+    db_company.close()
     return hashtag
 
 

+ 0 - 0
ig_tags/ig_tags.py → ig_tags/tags.py