gen_counter_db.py 397 B

1234567891011121314151617
  1. import time
  2. import dataset
  3. import os
  4. import codecs
  5. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
  6. table=db['kw_contentgap']
  7. fr=codecs.open('C:\\gitlab\\kw_tools\\kw_tools\\hhh\\SEO\\contentgap.txt','r','utf-8')
  8. lines=fr.readlines()
  9. lst=[]
  10. for l in lines:
  11. table.insert({'kw':l.replace('\n','')})
  12. db.commit()
  13. #table=db['counter']
  14. #table.insert({'cnt':0})