這篇文章主要介紹了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的使用方法的實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!