[数据库] Redis编程接口(Python)
Posted leokale-zz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[数据库] Redis编程接口(Python)相关的知识,希望对你有一定的参考价值。
一、Python操作Redis
1.安装Redis包
pip install redis
2.连接Redis
import redis # 远程连接redis,地址为192.168.1.181:6379,默认连接的数据库为0.通过db参数修改 re = redis.Redis(host=‘192.168.1.181‘, port=6379, db=0)
哈
以上是关于[数据库] Redis编程接口(Python)的主要内容,如果未能解决你的问题,请参考以下文章
Python + pytest + yaml + allure + mysql + redis + 钉钉/企业微信通知,接口自动化框架V2.0,支持多业务处理,仅需维护yaml用例,无需要编写代码
Python + pytest + yaml + allure + mysql + redis + 钉钉/企业微信通知,接口自动化框架V2.0,支持多业务处理,仅需维护yaml用例,无需要编写代码