Jared 3 år sedan
förälder
incheckning
ffcd93ca8f
1 ändrade filer med 3 tillägg och 2 borttagningar
  1. 3 2
      choozmo/term_get_email.py

+ 3 - 2
choozmo/term_get_email.py

@@ -87,7 +87,7 @@ def restart_browser():
     return driver
 
 db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
-cursor=db.query('select title,url from term_gsearch where url not in (select url from term_progress) order by rand()')
+cursor=db.query('select title,url,tag from term_gsearch where url not in (select url from term_progress) order by rand()')
 lst=[]
 for c in cursor:
     lst.append(c)
@@ -103,6 +103,7 @@ for c in lst:
     c['title']=c['title'].replace('聯絡我們:','')
     c['title']=c['title'].replace('股份有限公司','')
     c['title']=c['title'].replace('有限公司','')
+    c['title']=c['title'].replace('聯絡我們','')
 
-    table.insert({'title':c['title'],'url':c['url'],'email':email})
+    table.insert({'title':c['title'],'url':c['url'],'email':email,'tag':c['tag']})
 #    time.sleep(3)