2017-12-22 17:37:54 +01:00
|
|
|
__version__ = '2.4.85'
|
2017-11-08 03:10:04 +01:00
|
|
|
import sys
|
|
|
|
import logging
|
2017-12-22 14:49:14 +01:00
|
|
|
import functools
|
|
|
|
import warnings
|
|
|
|
|
2017-11-08 03:10:04 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
2017-11-08 04:10:54 +01:00
|
|
|
FORMAT = "%(levelname)s [%(filename)s:%(lineno)s - %(funcName)s() ] %(message)s"
|
2017-11-08 03:10:04 +01:00
|
|
|
logging.basicConfig(stream=sys.stderr, level=logging.WARNING, format=FORMAT)
|
2015-09-18 12:03:56 +02:00
|
|
|
|
2017-12-22 14:49:14 +01:00
|
|
|
|
|
|
|
def deprecated(func):
|
|
|
|
'''This is a decorator which can be used to mark functions
|
|
|
|
as deprecated. It will result in a warning being emitted
|
|
|
|
when the function is used.'''
|
|
|
|
|
|
|
|
@functools.wraps(func)
|
|
|
|
def new_func(*args, **kwargs):
|
|
|
|
warnings.showwarning(
|
|
|
|
"Call to deprecated function {}.".format(func.__name__),
|
|
|
|
category=DeprecationWarning,
|
|
|
|
filename=func.__code__.co_filename,
|
|
|
|
lineno=func.__code__.co_firstlineno + 1
|
|
|
|
)
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
return new_func
|
|
|
|
|
|
|
|
|
2017-08-25 16:08:05 +02:00
|
|
|
try:
|
2017-08-28 19:01:53 +02:00
|
|
|
from .exceptions import PyMISPError, NewEventError, NewAttributeError, MissingDependency, NoURL, NoKey, InvalidMISPObject, UnknownMISPObjectTemplate # noqa
|
|
|
|
from .api import PyMISP # noqa
|
|
|
|
from .abstract import AbstractMISP, MISPEncode # noqa
|
2017-12-26 17:13:57 +01:00
|
|
|
from .mispevent import MISPEvent, MISPAttribute, MISPObjectReference, MISPObjectAttribute, MISPObject, MISPTag, MISPUser, MISPOrganisation, MISPSighting # noqa
|
2017-09-12 16:46:06 +02:00
|
|
|
from .tools import AbstractMISPObjectGenerator # noqa
|
2017-08-28 19:01:53 +02:00
|
|
|
from .tools import Neo4j # noqa
|
|
|
|
from .tools import stix # noqa
|
2017-09-20 12:24:51 +02:00
|
|
|
from .tools import openioc # noqa
|
2017-11-08 03:10:04 +01:00
|
|
|
logger.debug('pymisp loaded properly')
|
|
|
|
except ImportError as e:
|
|
|
|
logger.warning('Unable to load pymisp properly: {}'.format(e))
|