当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 9

wenxuefeng/COVID-19_notify
暂停

forked from Jemmy/COVID-19_notify
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util.py 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
Jemmy 提交于 2020-02-02 17:34 . add persistence[持久化]
#!/usr/local/bin/python3
# _*_ coding:utf-8 _*_
import Config
import redis
class ColorUtil():
@staticmethod
def get_reset():
return "\033[0m"
@staticmethod
def get_red_with_back():
return "\033[41;37;1m"
@staticmethod
def get_red():
return "\033[31m"
@staticmethod
def get_green_with_back():
return "\033[97;42m"
@staticmethod
def get_green():
return "\033[32m"
@staticmethod
def get_blue_with_back():
return "\033[97;44m"
@staticmethod
def get_blue():
return "\033[34m"
class RedisConn():
def __init__(self):
self.host = Config.REDIS["host"]
self.port = Config.REDIS["port"]
self.db = Config.REDIS["index"]
self.set_key = Config.REDIS["key"]
self.conn = redis.Redis(host=self.host,port=self.port,db=self.db)
def add(self,id):
return self.conn.sadd(self.set_key,id)
def check_is_in(self,id):
res = self.conn.sismember(self.set_key,id)
return True if res is True else False
def pingpingping(self):
if self.conn.ping():
print("{}redis连接正常{}".format(ColorUtil.get_green(),ColorUtil.get_reset()))
else:
print("{}redis连接失败{}".format(ColorUtil.get_red(),ColorUtil.get_reset()))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wen_xue_feng/COVID-19_notify.git
[email protected]:wen_xue_feng/COVID-19_notify.git
wen_xue_feng
COVID-19_notify
COVID-19_notify
master

搜索帮助