Skip to content

Instantly share code, notes, and snippets.

@smoak
Created December 22, 2011 06:16
Show Gist options
  • Save smoak/1509207 to your computer and use it in GitHub Desktop.
Save smoak/1509207 to your computer and use it in GitHub Desktop.
class Entity:
def __init__(self, data):
self.data = data
class Org(Entity):
@property
def avatar_url(self):
return self.data["avatar_url"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment