-
Notifications
You must be signed in to change notification settings - Fork 53
/
updategitee.py
51 lines (42 loc) · 1.99 KB
/
updategitee.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#自动更新网站内容脚本
import os
EXCLUDE_DIRS = ['.git', 'docs', '.vscode', '.circleci']
README_MD = ['README.md', 'readme.md', 'index.md']
TXT_EXTS = ['md', 'txt']
TXT_URL_PREFIX = 'https://gitee.com/wisfly/NEU-RSE-Courses/blob/master/'
BIN_URL_PREFIX = 'https://gitee.com/wisfly/NEU-RSE-Courses/raw/master/'
def list_files(course: str):
filelist_texts = '## 文件列表\n\n'
readme_path = ''
for root, dirs, files in os.walk(course):
level = root.replace(course, '').count(os.sep)
indent = ' ' * 4 * level
filelist_texts += '{}- {}\n'.format(indent, os.path.basename(root))
subindent = ' ' * 4 * (level + 1)
for f in files:
if f not in README_MD:
if f.split('.')[-1] in TXT_EXTS:
filelist_texts += '{}- [{}]({})\n'.format(subindent,
f, '{}{}/{}'.format(TXT_URL_PREFIX, root, f))
else:
filelist_texts += '{}- [{}]({})\n'.format(subindent,
f, '{}{}/{}'.format(BIN_URL_PREFIX, root, f))
else:
if level==0: #only read the first readme
readme_path = '{}/{}'.format(root, f)
return filelist_texts, readme_path
def generate_md(course: str, filelist_texts: str, readme_path: str):
final_texts = ['\n\n', filelist_texts]
if readme_path:
with open(readme_path, 'r',encoding='UTF-8') as file:
final_texts = file.readlines() + final_texts
with open('docs/{}.md'.format(course), 'w',encoding='UTF-8') as file:
file.writelines(final_texts)
if __name__ == '__main__':
courses = list(filter(lambda x: os.path.isdir(x) and (
x not in EXCLUDE_DIRS), os.listdir('.'))) # list courses
for course in courses:
if course=="site":
continue
filelist_texts, readme_path = list_files(course)
generate_md(course, filelist_texts, readme_path)