mirror of https://github.com/MISP/PyMISP
fix: Py3.5 compat
parent
3b42497967
commit
44344913f8
|
@ -16,7 +16,7 @@ from .exceptions import PyMISPInvalidFormat
|
|||
logger = logging.getLogger('pymisp')
|
||||
|
||||
if six.PY2:
|
||||
logger.warning("You're using python 2, it is strongly recommended to use python >=3.5")
|
||||
logger.warning("You're using python 2, it is strongly recommended to use python >=3.6")
|
||||
|
||||
# This is required because Python 2 is a pain.
|
||||
from datetime import tzinfo, timedelta
|
||||
|
|
|
@ -23,7 +23,7 @@ logger = logging.getLogger('pymisp')
|
|||
|
||||
|
||||
if six.PY2:
|
||||
logger.warning("You're using python 2, it is strongly recommended to use python >=3.5")
|
||||
logger.warning("You're using python 2, it is strongly recommended to use python >=3.6")
|
||||
|
||||
# This is required because Python 2 is a pain.
|
||||
from datetime import tzinfo, timedelta
|
||||
|
@ -40,6 +40,13 @@ if six.PY2:
|
|||
def dst(self, dt):
|
||||
return timedelta(0)
|
||||
|
||||
|
||||
if (3, 0) <= sys.version_info < (3, 6):
|
||||
OLD_PY3 = True
|
||||
else:
|
||||
OLD_PY3 = False
|
||||
|
||||
|
||||
try:
|
||||
from dateutil.parser import parse
|
||||
except ImportError:
|
||||
|
@ -94,6 +101,9 @@ class MISPAttribute(AbstractMISP):
|
|||
if not describe_types:
|
||||
ressources_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'data')
|
||||
with open(os.path.join(ressources_path, 'describeTypes.json'), 'rb') as f:
|
||||
if OLD_PY3:
|
||||
t = json.loads(f.read())
|
||||
else:
|
||||
t = json.load(f)
|
||||
describe_types = t['result']
|
||||
self.__categories = describe_types['categories']
|
||||
|
@ -352,12 +362,21 @@ class MISPEvent(AbstractMISP):
|
|||
ressources_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'data')
|
||||
if strict_validation:
|
||||
with open(os.path.join(ressources_path, 'schema.json'), 'rb') as f:
|
||||
if OLD_PY3:
|
||||
self.__json_schema = json.loads(f.read())
|
||||
else:
|
||||
self.__json_schema = json.load(f)
|
||||
else:
|
||||
with open(os.path.join(ressources_path, 'schema-lax.json'), 'rb') as f:
|
||||
if OLD_PY3:
|
||||
self.__json_schema = json.loads(f.read())
|
||||
else:
|
||||
self.__json_schema = json.load(f)
|
||||
if not describe_types:
|
||||
with open(os.path.join(ressources_path, 'describeTypes.json'), 'rb') as f:
|
||||
if OLD_PY3:
|
||||
t = json.loads(f.read())
|
||||
else:
|
||||
t = json.load(f)
|
||||
describe_types = t['result']
|
||||
|
||||
|
@ -898,6 +917,9 @@ class MISPObject(AbstractMISP):
|
|||
self._known_template = False
|
||||
if self._known_template:
|
||||
with open(template_path, 'rb') as f:
|
||||
if OLD_PY3:
|
||||
self._definition = json.loads(f.read())
|
||||
else:
|
||||
self._definition = json.load(f)
|
||||
setattr(self, 'meta-category', self._definition['meta-category'])
|
||||
self.template_uuid = self._definition['uuid']
|
||||
|
|
Loading…
Reference in New Issue