1 Star 2 Fork 0

郭瀚亭/工具人的工具箱-MyTools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
set_ban_word.py 366 Bytes
一键复制 编辑 原始数据 按行查看 历史
郭瀚亭 提交于 2022-07-01 23:09 . 前端大改版
import sys
import redis
def add_ban_word(word):
con = redis.StrictRedis(host="localhost", port=6379, db=3)
result = con.set(word, "1")
return result
if __name__=="__main__":
argv = sys.argv
print(f"获取到{len(argv)-1}个关键字参数:")
for each in argv[1:]:
result = add_ban_word(each)
print(f"{each} {result}.")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/guo-hanting/my-tools-all.git
git@gitee.com:guo-hanting/my-tools-all.git
guo-hanting
my-tools-all
工具人的工具箱-MyTools
master

搜索帮助