def display_spiders(spiders, click):
table_data = list(TABLE_SPIDERS_MODEL)
for s in spiders:
table_data.append(
[s['id'], s['tags'], s['version'], s['type']]
)
table = SingleTable(table_data)
click.echo(table.table)
评论列表
文章目录