我正在构建一个使用其API向Trello推送数据的Web应用程序。
当前堆栈是pythonic,我使用py-trello来管理大多数API调用。 但是有一个端点让我感到困惑:post a comment on a card
似乎当前的py-trello实现没有提供发布新评论并立即检索其数据的方法。例如,您可以使用List:
def add_list(self, name):
"""Add a list to this board
:name: name for the list
:return: the list
:rtype: List
"""
obj = self.client.fetch_json(
'/lists',
http_method='POST',
post_args={'name': name, 'idBoard': self.id}, )
return List.from_json(board=self, json_obj=obj)
Trello API将创建的列表对象作为JSON对象返回。 py-trello将此JSON转换为List对象。
有没有办法对Card评论做同样的事情?卡类附带"添加注释" 功能(code)。
但Trello似乎什么都没有回复......
>>> # Card definition
>>> card = Card(parent=trello_board, card_id=id)
>>> # Fetching card data
>>> card.fetch()
>>> # This is correctly pushed to Trello
>>> obj = card.comment('Foo, bar!')
>>> import pprint
>>> # Hoping to print a big fat JSON
>>> pp = pprint.PrettyPrinter(indent=4)
>>> pp.pprint(obj)
None
有任何线索吗?非常感谢!
答案 0 :(得分:1)
问题来自 py-trello 当前实施。请参阅我的回答:https://github.com/sarumont/py-trello/issues/113
谢谢大家!