Skip to content

Instantly share code, notes, and snippets.

@philippstroehle
Created September 14, 2013 09:56
Show Gist options
  • Save philippstroehle/6560667 to your computer and use it in GitHub Desktop.
Save philippstroehle/6560667 to your computer and use it in GitHub Desktop.
class Foo(object):
pass
class Bar(object):
pass
dispatch_dict = {"Foo": Foo, "Bar": Bar}
dispatch_dict["Foo"]() # returns an instance of Foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment