mirror of https://github.com/MISP/PyMISP
				
				
				
			
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
__version__ = '2.4.137.1'
 | 
						|
import logging
 | 
						|
 | 
						|
FORMAT = "%(levelname)s [%(filename)s:%(lineno)s - %(funcName)s() ] %(message)s"
 | 
						|
formatter = logging.Formatter(FORMAT)
 | 
						|
default_handler = logging.StreamHandler()
 | 
						|
default_handler.setFormatter(formatter)
 | 
						|
 | 
						|
logger = logging.getLogger(__name__)
 | 
						|
logger.addHandler(default_handler)
 | 
						|
logger.setLevel(logging.WARNING)
 | 
						|
 | 
						|
 | 
						|
everything_broken = '''Unknown error: the response is not in JSON.
 | 
						|
Something is broken server-side, please send us everything that follows (careful with the auth key):
 | 
						|
Request headers:
 | 
						|
{}
 | 
						|
Request body:
 | 
						|
{}
 | 
						|
Response (if any):
 | 
						|
{}'''
 | 
						|
 | 
						|
 | 
						|
try:
 | 
						|
    from .exceptions import PyMISPError, NewEventError, NewAttributeError, MissingDependency, NoURL, NoKey, InvalidMISPObject, UnknownMISPObjectTemplate, PyMISPInvalidFormat, MISPServerError, PyMISPNotImplementedYet, PyMISPUnexpectedResponse, PyMISPEmptyResponse  # noqa
 | 
						|
    from .abstract import AbstractMISP, MISPEncode, pymisp_json_default, MISPTag, Distribution, ThreatLevel, Analysis  # noqa
 | 
						|
    from .mispevent import MISPEvent, MISPAttribute, MISPObjectReference, MISPObjectAttribute, MISPObject, MISPUser, MISPOrganisation, MISPSighting, MISPLog, MISPShadowAttribute, MISPWarninglist, MISPTaxonomy, MISPNoticelist, MISPObjectTemplate, MISPSharingGroup, MISPRole, MISPServer, MISPFeed, MISPEventDelegation, MISPUserSetting, MISPInbox, MISPEventBlocklist, MISPOrganisationBlocklist # noqa
 | 
						|
    from .tools import AbstractMISPObjectGenerator  # noqa
 | 
						|
    from .tools import Neo4j  # noqa
 | 
						|
    from .tools import stix  # noqa
 | 
						|
    from .tools import openioc  # noqa
 | 
						|
    from .tools import ext_lookups  # noqa
 | 
						|
    from .tools import update_objects  # noqa
 | 
						|
 | 
						|
    from .api import PyMISP, register_user  # noqa
 | 
						|
    from .api import PyMISP as ExpandedPyMISP  # noqa
 | 
						|
    from .tools import load_warninglists  # noqa
 | 
						|
    # Let's not bother with old python
 | 
						|
    try:
 | 
						|
        from .tools import reportlab_generator  # noqa
 | 
						|
    except ImportError:
 | 
						|
        # FIXME: The import should not raise an exception if reportlab isn't installed
 | 
						|
        pass
 | 
						|
    except NameError:
 | 
						|
        # FIXME: The import should not raise an exception if reportlab isn't installed
 | 
						|
        pass
 | 
						|
    logger.debug('pymisp loaded properly')
 | 
						|
except ImportError as e:
 | 
						|
    logger.warning('Unable to load pymisp properly: {}'.format(e))
 |