Created
August 4, 2016 14:29
-
-
Save Jack2/03550f0c059a7aa92ece8bb14cb5a94c to your computer and use it in GitHub Desktop.
decrypt encoded base64 zip file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
import base64 | |
input_bs64 = open("location2.zip.bs64",'r') | |
output_zip = open("location2.zip",'w') | |
base64.decode(input_bs64, output_zip) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment