Python实现带参数的用户验证功能装饰器示例
作者:我是马克思小清新 时间:2023-05-15 01:34:05
本文实例讲述了Python实现带参数的用户验证功能装饰器。分享给大家供大家参考,具体如下:
user_list = [
{'name': 'sb1', 'passwd': '123'},
{'name': 'sb2', 'passwd': '123'},
{'name': 'sb3', 'passwd': '123'},
{'name': 'sb4', 'passwd': '123'}
]
# 初始状态,用来保存登陆的用户,
client_dic = {'username': None, 'login': False}
# 添加新功能
def auth(auth_type='filedb'):
def auth_func(func):
def wrapper(*args, **kwargs):
print(auth_type)
if auth_type == 'fildb':
# 参数检查,判断是否有用户登录,如果有,不用验证,直接执行函数的功能
if client_dic['username'] and client_dic['login']:
res = func(*args, **kwargs)
return res
# 输入用户名和密码
username = input('用户名:').strip()
passwd = input('passwd:').strip()
# 对比列表,检查用户名和密码是否正确
for user_dic in user_list:
if username == user_dic['name'] and passwd == user_dic['passwd']:
client_dic['username'] = user_dic['name']
client_dic['login'] = True
res = func(*args, **kwargs)
return res
else:
print('用户名或者密码错误!')
elif auth_type == 'pass':
print('不知道什么验证方式')
res = func(*args, **kwargs)
return res
else:
print('一脸蒙蔽的验证方式')
res = func(*args, **kwargs)
return res
return wrapper
return auth_func
@auth(auth_type='filedb')
def index():
print("欢迎来到主页")
@auth(auth_type='user')
def home(name):
print("欢迎回家:%s" % name)
@auth(auth_type='pass')
def shoppping_car():
print('购物车里有[%s,%s,%s]' % ('奶茶', '妹妹', '娃娃'))
print(client_dic)
index()
print(client_dic)
home('root')
运行结果:
{'username': None, 'login': False}
filedb
一脸蒙蔽的验证方式
欢迎来到主页
{'username': None, 'login': False}
user
一脸蒙蔽的验证方式
欢迎回家:root
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/qq_33531400/article/details/79324747
标签:Python,装饰器
0
投稿
猜你喜欢
go语言通过结构体生成json示例解析
2024-04-26 17:23:53
百度的图片轮换JS代码,支持FF
2007-11-16 16:24:00
python opencv3实现人脸识别(windows)
2023-11-09 11:21:17
python数据挖掘需要学的内容
2021-02-26 00:54:13
python3+opencv 使用灰度直方图来判断图片的亮暗操作
2024-01-01 07:07:23
linux mysql 报错:MYSQL:The server quit without updating PID file
2024-01-22 08:40:47
Golang 实现Socket服务端和客户端使用TCP协议通讯
2023-07-21 10:09:38
vue使用v-if v-show页面闪烁,div闪现的解决方法
2024-04-28 09:31:49
用ASP打开远端MDB数据库
2007-10-13 06:56:00
python绘制三维图的详细新手教程
2022-03-19 14:23:52
python 多进程和多线程使用详解
2021-08-12 19:50:43
Python实现批量下载ts文件并合并为mp4
2022-07-15 20:24:09
Pandas读存JSON数据操作示例详解
2022-05-24 08:14:03
python爬虫实例详解
2021-07-05 01:37:53
Python:slice与indices的用法
2021-09-10 22:31:09
C#调用Python的URL接口的示例
2022-08-22 21:49:27
js实现鼠标切换图片(无定时器)
2023-09-07 02:44:58
Python绘图之柱形图绘制详解
2023-08-16 16:16:49
使用ASP订制自己的XML文件读写方法
2008-10-24 09:35:00
SQL 中having 和where的区别分析
2024-01-17 17:23:24