python脚本-lpushkey

# -*- coding: UTF-8 -*-
import redis
r = redis.Redis(host='xxx', port=xx, decode_responses=True, password='xxx')

with open('message_data.txt', encoding='UTF-8') as f:
    for line in f:
        r.lpush('your redis key name', line)
        print (line)

  

posted @ 2019-09-19 23:54  monkeybron  阅读(292)  评论(0编辑  收藏  举报