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""