Skip to content

Instantly share code, notes, and snippets.

@aryan-gupta
Created October 3, 2019 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aryan-gupta/ffcb48907376bc96777b9b3657d848f2 to your computer and use it in GitHub Desktop.
Save aryan-gupta/ffcb48907376bc96777b9b3657d848f2 to your computer and use it in GitHub Desktop.
import base64
import sys
import json
s = base64.b64decode(sys.argv[1])
j = json.loads(s)
file = open('test.txt', 'w')
file.write(str(j))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment