update github client new list

This commit is contained in:
Bin Yang
2021-03-31 14:05:49 -04:00
parent 3005ec3d81
commit 64f9ec4adf
4 changed files with 193 additions and 162 deletions
+2 -2
View File
@@ -3,7 +3,6 @@ import os
import pandas as pd
@DeprecationWarning
def generate_wiki_per_category(output_path):
"""
@@ -21,7 +20,8 @@ def generate_wiki_per_category(output_path):
'comment': category_df['comment'],
'created_at': category_df['created_at'],
'last_commit': category_df['last_commit'],
'star_count': category_df['star_count']
'star_count': category_df['star_count'],
})
output_path_full = os.path.join(output_path, '{}.md'.format(category))
with open(output_path_full, 'w') as f: