···11#!/usr/bin/env python3
2233-import sys, os, subprocess, re
33+import sys, os, subprocess, re, getpass
4455# Data
66library = False
···1212framework_prefix = "/System/Library/Frameworks/"
1313private_framework_prefix = "/System/Library/PrivateFrameworks/"
14141515-class_dump = "/Users/andrewhyatt/bin/class-dump"
1515+#######################################################
1616+##### SET THIS TO WHERE YOUR class-dump BINARY IS #####
1717+#######################################################
1818+username = getpass.getuser()
1919+class_dump = "/Users/" + username + "/bin/class-dump"
16201721copyright = """/*
1822 This file is part of Darling.
···128132 if line == "":
129133 continue
130134135135+ print(line)
131136 if len(line.split(" ")) == 3:
132137 address, id, name = line.split(" ")
133138 # Remove the underscore