forked from megashurik/sentinel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
450 B
22 lines
450 B
import simplejson
|
|
import binascii
|
|
import sys
|
|
import pdb
|
|
from pprint import pprint
|
|
import sys
|
|
import os
|
|
sys.path.append(os.path.normpath(os.path.join(os.path.dirname(__file__), '../lib')))
|
|
import dashlib
|
|
# ============================================================================
|
|
usage = "%s <hex>" % sys.argv[0]
|
|
|
|
obj = None
|
|
if len(sys.argv) < 2:
|
|
print(usage)
|
|
sys.exit(1)
|
|
else:
|
|
obj = dashlib.deserialise(sys.argv[1])
|
|
|
|
pdb.set_trace()
|
|
1
|