# For python2 & 3 compat, a bit dirty, but it seems to be the least bad one
try:
input=raw_input
exceptNameError:
pass
definit(url,key):
returnPyMISP(url,key,True,'json')
if__name__=='__main__':
parser=argparse.ArgumentParser(description='Send malware sample to MISP.')
parser.add_argument("-d","--distrib",type=int,help="The distribution setting used for the attributes and for the newly created event, if relevant. [0-3].")
parser.add_argument("-i","--info",help="Used to populate the event info field if no event ID supplied.")
parser.add_argument("-a","--analysis",type=int,help="The analysis level of the newly created event, if applicatble. [0-2]")
parser.add_argument("-t","--threat",type=int,help="The threat level ID of the newly created event, if applicatble. [0-3]")