darwin (owner)

Revisions

gist: 33037 Download_button fork
public
Public Clone URL: git://gist.github.com/33037.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
class Service(dict):
    def __init__(self, id, name, profileUrl):
        super(Service, self).__init__()
        self['id'] = id
        self['name'] = name
        self['profileUrl'] = profileUrl