Skip to content

Instantly share code, notes, and snippets.

@evernick
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save evernick/b23d9e0d4a02a0303a7d to your computer and use it in GitHub Desktop.

Select an option

Save evernick/b23d9e0d4a02a0303a7d to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
if __name__ == "__main__":
data = "test"
encode_string = data.encode('base64') # Base64 Encoding
print "encode string :", encode_string
decode_string = encode_string.decode('base64') # Base64 Decoding
print "decode string :", decode_string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment