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)

  

你可能感兴趣的:(python脚本-lpushkey)