This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # A quick and dirty script to convert old Lurkr-format data extracted from Arcane to new Lurkr-format | |
| import json | |
| import os | |
| from copy import deepcopy | |
| input_file = 'None' | |
| while not os.path.exists(input_file): | |
| input_file = str(input('Input file path? ')) | |
| output_file = "output.json" |