Commit b29b947f authored by 林颖's avatar 林颖

merge合并遗漏

parent 0260c7b5
...@@ -132,6 +132,24 @@ class user_request(BaseRequest): ...@@ -132,6 +132,24 @@ class user_request(BaseRequest):
self.params["month"] = month self.params["month"] = month
return self.api_send(self.data["sign_calendar"]) return self.api_send(self.data["sign_calendar"])
# 我的-收藏-帖子
def favors_tractate(self, page, count):
self.params["page"] = page
self.params["count"] = count
return self.api_send(self.data["favors_tractate"])
# 我的-收藏-回答
def favors_answers(self, page, count):
self.params["page"] = page
self.params["count"] = count
return self.api_send(self.data["favors_answers"])
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment