获取存档卡

Get Archived Cards

我正在为 python (py-trello) 使用 trello api,我需要获取特定列表中存在的所有卡片,甚至是存档的卡片。

我尝试使用方法 list_cards() 从列表中列出所有卡片。

all_boards = client.list_boards()
wls_board = all_boards[1]
my_lists = wls_board.list_lists()

for list in my_lists:
    for card in list.list_cards():
        if "Done" in card.name: print(card.name)

该方法仅返回未存档的卡片。有没有办法使用 py-trello 也获取存档的卡片?

刚刚在文档中找到解决方案。

方法 list_cards() 的参数 card_filter 默认设置为 'open' 所以我只需要将其更改为 'all'.

list_cards(card_filter=’all’)