Add seed and version info to output

- Add seed
- Normalize seed code to BCEX format
- Add is_bcce
- Bump version to 0.2
This commit is contained in:
Trysdyn Black 2024-06-30 21:51:44 -07:00
parent 8697253ea6
commit 49d5e1260f

11
main.py
View file

@ -1,6 +1,6 @@
#!/usr/bin/env python3
__version__ = "0.1"
__version__ = "0.2"
__author__ = "Trysdyn Black"
import json
@ -123,6 +123,15 @@ def parse_COMMANDS(data):
return commands
def parse_SEED(data):
is_BCCE = True if data.startswith("CE") else False
# Normalize seed codes to BCEX format, removing spaces and replacing pipes with dots
seed = data.replace("|", ".").replace(" ", "")
return {"is_bcce": is_BCCE, "seed": seed}
def load(filename):
# Load our file, tokenize by section header (starting with ====)
with open(filename) as infile: