Skip to content

Instantly share code, notes, and snippets.

@indeyets
Created March 10, 2011 17:31
Show Gist options
  • Select an option

  • Save indeyets/864518 to your computer and use it in GitHub Desktop.

Select an option

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