change to top 15 repos from 10

This commit is contained in:
Bin Yang
2021-04-12 17:22:41 -04:00
parent 77af6ac140
commit ad2d322934
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
___
+1 -1
View File
@@ -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"<!-- [PLACEHOLDER_START:{clean_category_name}] --> \n"
new_str += table_str
new_str += f"<!-- [PLACEHOLDER_END:{clean_category_name}] -->"