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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from .base import Resource
from .users import User
class File(Resource):
def __str__(self):
return '<GistFile (%s)>' % getattr(self, 'filename', '')
class Fork(Resource):
_dates = ('created_at', )
_maps = {'user': User}
def __str__(self):
return '<GistFork>'
class History(Resource):
_dates = ('committed_at', )
_maps = {'user': User}
def __str__(self):
return '<GistHistory (%s)>' % getattr(self, 'version', '')
class Gist(Resource):
_dates = ('created_at', )
_maps = {'user': User}
_collection_maps = {'files': File, 'forks': Fork, 'history': History}
def __str__(self):
return '<Gist (%s)>' % getattr(self, 'description', '')
class Comment(Resource):
_dates = ('created_at', )
_maps = {'user': User}
def __str__(self):
return '<GistComment (%s)>' % getattr(self, 'user', '')
|