Skip to content

Instantly share code, notes, and snippets.

View HippoProgrammer's full-sized avatar
🐘
the discord api is bad

HippoProgrammer HippoProgrammer

🐘
the discord api is bad
  • United Kingdom
  • 08:33 (UTC +01:00)
View GitHub Profile
@HippoProgrammer
HippoProgrammer / lurkr-json-upgrader.py
Created October 30, 2025 14:28
A Python script that fixes the output of this script - https://gist.github.com/SomeAspy/2b27a6d66b97db6bd1b62afac5343285?ref=blog.aspy.dev - to work again.
# 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"