Skip to content

Instantly share code, notes, and snippets.

@trdenton
Created September 10, 2016 07:01
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 trdenton/d60e27cd24c762acce53bec120386248 to your computer and use it in GitHub Desktop.
Save trdenton/d60e27cd24c762acce53bec120386248 to your computer and use it in GitHub Desktop.
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