blob: 1aed2bd8b29cff82645f6f86510f594976bd765c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from .base import Resource
__all__ = ('Key', 'Plan', 'User')
class Key(Resource):
def __str__(self):
return '<Key (%s)>' % getattr(self, 'title', '')
class Plan(Resource):
def __str__(self):
return '<Plan (%s)>' % getattr(self, 'name', '')
class User(Resource):
""" """
_maps = {'plan': Plan}
_dates = ('created_at', )
def __str__(self):
return '<User (%s)>' % getattr(self, 'login', '')
|