Skip to content

Instantly share code, notes, and snippets.

View gardendistrict0's full-sized avatar

gardendistrict0

View GitHub Profile
@jojonas
jojonas / love2d-unpacker.py
Last active March 2, 2025 04:50
Love2d executable unpacker.
import argparse
import os, os.path
import zipfile
import io
def readui32(file):
bytes = file.read(4)
number = bytes[0]
number += bytes[1] << 8
number += bytes[2] << 16