From ad2d322934e58f843e3730e899c02b33f63cfe68 Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Mon, 12 Apr 2021 17:22:41 -0400 Subject: [PATCH] change to top 15 repos from 10 --- README.md | 2 +- wiki_gen.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c97347..a95756d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ A listed repository should be deprecated if: ___ - All repos/links status including last commit date is updated daily -- 10 Highest ranked repos/links for each section are displayed on main README.md and full list is available within the wiki page +- Only 15 Highest ranked repos/links for each section are displayed on main README.md and full list is available within the wiki page - Both Wikis/README.md is updated in realtime as soon as new information are pushed to the repo ___ diff --git a/wiki_gen.py b/wiki_gen.py index 08f0f60..294d2ee 100644 --- a/wiki_gen.py +++ b/wiki_gen.py @@ -68,7 +68,7 @@ def generate_wiki_per_category(output_path, update_readme: bool = True): # only display top 5, then expandable for extra 5 with open(os.path.join(PROJECT_ROOT_DIR, 'README.md'), 'w') as f: - table_str = formatted_df.iloc[:10].to_markdown(index=False) + table_str = formatted_df.iloc[:15].to_markdown(index=False) new_str = f" \n" new_str += table_str new_str += f""