@polymerchm i don't know about classes but you can see available frameworks doing

import os frameworks=os.listdir('/System/Library/Frameworks') for f in frameworks: print f

And then you can load a framework with:

from objc_util import * ObjCClass('NSBundle').bundleWithPath_('/System/Library/Frameworks/FRAMEWORK_TO_LOAD.framework').load()