好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Python关于编码BasicAuth的使用方法的实例分析

这篇文章主要介绍了 Python 编码Basic Auth使用方法简单实例的相关资料,需要的朋友可以参考下

本片博文主要介绍在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 

以上就是Python关于编码Basic Auth的使用方法的实例分析的详细内容,更多请关注Gxl网其它相关文章!

查看更多关于Python关于编码BasicAuth的使用方法的实例分析的详细内容...

  阅读:46次