mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-23 15:27:18 +00:00
14 lines
417 B
Python
14 lines
417 B
Python
import json
|
|
|
|
class Galaxy():
|
|
def __init__(self, description, name, namespace, type, uuid, version):
|
|
self.description = description
|
|
self.name = name
|
|
self.namespace = namespace
|
|
self.type = type
|
|
self.uuid = uuid
|
|
self.version = version
|
|
|
|
def save_to_file(self, path):
|
|
with open(path, "w") as file:
|
|
file.write(json.dumps(self.__dict__, indent=4))
|