Open zi0Black opened 2 years ago
Since python 3.1 base64.decodestring is a deprecated alias of base64.decodebytes(s). In python 3.9, the function is no longer available and must be replaced.
base64.decodestring
base64.decodebytes(s)
Official documentation:
Since python 3.1
base64.decodestring
is a deprecated alias ofbase64.decodebytes(s)
. In python 3.9, the function is no longer available and must be replaced.Official documentation: