Python 官方文档:入门教程 => 点击学习
本片博文主要介绍在python3 环境下把用户名密码编码成字符串。 代码如下: import base64 def get_basic_auth_str(username, passWord): t
本片博文主要介绍在python3 环境下把用户名密码编码成字符串。
代码如下:
import base64
def get_basic_auth_str(username, passWord):
temp_str = username + ':' + password
# 转成bytes string
bytesString = temp_str.encode(encoding="utf-8")
# base64 编码
encodestr = base64.b64encode(bytesString)
# 解码
decodestr = base64.b64decode(encodestr)
return 'Basic ' + encodestr.decode()
调用样例:
print(get_basic_auth_str('admin', '123456'))
输出
Basic YWRtaW46MTIzNDU2
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
--结束END--
本文标题: Python 编码Basic Auth使用方法简单实例
本文链接: https://lsjlt.com/news/13211.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0