mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-23 07:17:17 +00:00
16 lines
No EOL
331 B
Python
16 lines
No EOL
331 B
Python
import json
|
|
from dataclasses import dataclass, asdict
|
|
|
|
@dataclass
|
|
class Galaxy():
|
|
description: str
|
|
icon: str
|
|
name: str
|
|
namespace: str
|
|
type: str
|
|
uuid: str
|
|
version: str
|
|
|
|
def save_to_file(self, path: str):
|
|
with open(path, "w") as file:
|
|
file.write(json.dumps(asdict(self), indent=4)) |