This commit is contained in:
Alon Zakai 2011-10-13 15:00:30 -07:00
Родитель 4cc863f413
Коммит fe00c08a45
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -22,5 +22,9 @@ while len(sdata) > 0:
if len(sdata) > 0:
lined += ['\n']
json = '[' + ''.join(lined) + ']'
print json
if len(sys.argv) < 3:
print json
else:
print 'var ' + sys.argv[2] + '=' + json + ';'

Просмотреть файл

@ -7,8 +7,9 @@ that and make a proper file out of it
import os, sys, re
data = open(sys.argv[1], 'r').read()
m = re.search('\[[\d, ]*\]', data)
m = re.search('\[[\d, -]*\]', data)
data = eval(m.group(0))
data = [x&0xff for x in data]
string = ''.join([chr(item) for item in data])
out = open(sys.argv[1]+'.raw', 'wb')
print data[0:80]