摘要:
方法 阅读全文
摘要:
from fake_useragent import UserAgent ua = UserAgent().random headers={ 'User-Agent':ua } print(headers) 阅读全文
摘要:
远程服务器,redis 安装在/opt下redis-4.0.10 cd redis-4.0.10 修改配置文件redis.conf配置文件:(注释掉bind:127.0.0.1)和修改保护模式为no 修改另一个配置文件: vim redis-6379.conf,修改保护模式: 启动redis服务 r 阅读全文
摘要:
python中连接redis redis的几种数据类型 1 str 2. hash 类型 # 设置值 hset username product price hget username product hgetall deng # 获取所有name为deng的键值 判断是否存在 hexists na 阅读全文