Created
September 10, 2016 07:01
-
-
Save trdenton/d60e27cd24c762acce53bec120386248 to your computer and use it in GitHub Desktop.
convert a list of decimal numbers into a binary file
This file contains 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/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