Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """Code snippets vol-44-snip-216
- Base64 encode and decode a file.
- By Steve Shambles
- Feb 2020
- stevepython.wordpress.com
- Download all snippets so far:
- https://wp.me/Pa5TU8-1yg
- Requirements:
- A text file called test.txt in current directory.
- Base64 is part of the standard library.
- """
- import base64
- with open('test.txt', 'rb') as f:
- encoded_str = base64.b64encode(f.read())
- print('-' *79)
- print('test.txt file encoded as:')
- print('-' *79)
- print(encoded_str)
- print('-' *79)
- with open('test-enc64.txt', 'wb') as f:
- f.write(encoded_str)
- with open('test-enc64.txt', 'rb') as f:
- decoded_str = base64.b64decode(f.read())
- print('test.txt file decoded back again:')
- print('-' *79)
- print(decoded_str)
- with open('test-decoded.txt', 'wb') as f:
- f.write(decoded_str)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement