Skip to content

Instantly share code, notes, and snippets.

@indeyets
Created March 10, 2011 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indeyets/864518 to your computer and use it in GitHub Desktop.
Save indeyets/864518 to your computer and use it in GitHub Desktop.
import inspect
import gi
from gi.repository import Midgard
Midgard.init()
for name, obj in inspect.getmembers(Midgard):
if inspect.isclass(obj):
print(obj.__name__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment