PyMISP/examples/cache_all.py

11 lines
253 B
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from keys import misp_url, misp_key, misp_verifycert
2019-07-17 16:46:47 +02:00
from pymisp import ExpandedPyMISP
if __name__ == '__main__':
2019-07-17 16:46:47 +02:00
misp = ExpandedPyMISP(misp_url, misp_key, misp_verifycert)
misp.cache_all_feeds()