base64.b85encode(b, pad=False)
Encode the bytes-like object b using base85 (as used in e.g. git-style binary diffs) and return the encoded bytes
.
If pad is true, the input is padded with b'\0'
so its length is a multiple of 4 bytes before encoding.
New in version 3.4.
Please login to continue.