mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-04 09:59:41 +02:00
feat: add seeders and leechers column in search results
This commit is contained in:
@@ -15,8 +15,10 @@ def format_data(data):
|
||||
post_author = [post["author"] for post in data]
|
||||
post_titles = [post["title"] for post in data]
|
||||
post_links = [post["url"] for post in data]
|
||||
post_seeders = [post["seeders"] for post in data]
|
||||
post_leechers = [post["leechers"] for post in data]
|
||||
|
||||
return post_titles, post_links, post_author
|
||||
return post_titles, post_links, post_author, post_seeders, post_leechers
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user