python鏈式調用REST API把參數放到URL中

需求格式:GET /users/:user/reposruby

程序:spa

 1 class Chain(object):
 2     def __init__(self,path=''):
 3         self._path=path
 4 
 5     def __getattr__(self, path):
 6         return Chain( '%s/%s' %(self._path,path))
 7 
 8     def __str__(self):
 9         return self._path
10 
11     def __call__(self, user):
12         return Chain('%s/%s' %(self._path,user))
13 
14     __repr__=__str__

實例:code

1 print('GET',Chain().users('michael').repos)
2 print('GET',Chain().status.user.timeline.list)

結果:blog

1 GET /users/michael/repos
2 GET /status/user/timeline/list
相關文章
相關標籤/搜索