Skip to content

Instantly share code, notes, and snippets.

@trdenton
Created September 10, 2016 07:01
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
convert a list of decimal numbers into a binary file
#!/usr/bin/python
import sys
f = open(sys.argv[1])
lines = f.readlines()
with open (sys.argv[2], "wb") as compdata:
bytes = bytearray(map(int,lines))
compdata.write(bytes)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment