mysql_to_redis.py 422 B

12345678910111213141516
  1. import dataset
  2. import pymysql
  3. pymysql.install_as_MySQLdb()
  4. import redis
  5. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
  6. table=db['selected_kw']
  7. lst = []
  8. cur = db.query('select term,domain from seo.selected_kw where client="鑫富"')
  9. for c in cur:
  10. lst.append([c['term'],c['domain']])
  11. print(lst)
  12. # r = redis.Redis(host='db.ptt.cx', port=6379, db=1,password='choozmo9')
  13. # r.set(lst)