Encoder en base64 python
import base64
string = "Je veux me cacher en base64 avec python"
base64.b64encode(string.encode())
b'SmUgdmV1eCBtZSBjYWNoZXIgZW4gYmFzZTY0IGF2ZWMgcHl0aG9u'
Decoder du base64 python
string = "SmUgdmV1eCBtZSBjYWNoZXIgZW4gYmFzZTY0IGF2ZWMgcHl0aG9u"
string_decode = base64.b64decode(string)
print(string_decode)
b'Je veux me cacher en base64 avec python'
Ressources
Les autres articles sur Python
La doc python officiel de la librairie base64