Skip to content

Instantly share code, notes, and snippets.

@Jack2
Created August 4, 2016 14:29
Show Gist options
  • Save Jack2/03550f0c059a7aa92ece8bb14cb5a94c to your computer and use it in GitHub Desktop.
Save Jack2/03550f0c059a7aa92ece8bb14cb5a94c to your computer and use it in GitHub Desktop.
decrypt encoded base64 zip file
#!/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