1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/usr/bin/env python # -*- encoding: utf-8 -*- from .base import Resource __all__ = ('Org', ) class Org(Resource): _dates = ('created_at', ) def __str__(self): return '<Org (%s)>' % getattr(self, 'name', '')