Create fetch_events_feed.py

pull/212/head
CheYenBzh 2017-05-29 14:03:21 +02:00 committed by GitHub
parent 01770aa51e
commit 5c74a2474f
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from keys import misp_url, misp_key
import argparse
from pymisp import PyMISP
# For python2 & 3 compat, a bit dirty, but it seems to be the least bad one
try:
input = raw_input
except NameError:
pass
def init(url, key):
return PyMISP(url, key, False, 'json', debug=False)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Fetch all events from a feed.')
parser.add_argument("-f", "--feed", required=True, help="feed's ID to be fetched.")
args = parser.parse_args()
misp = init(misp_url, misp_key)
misp.fetch_feed(args.feed)