-
Notifications
You must be signed in to change notification settings - Fork 288
/
update.py
executable file
·72 lines (56 loc) · 2.75 KB
/
update.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from urllib.parse import quote
EXCLUDE_DIRS = ['.git', 'docs', '.vscode', '.circleci', 'site', 'overrides', '.github']
README_MD = ['README.md', 'readme.md', 'index.md']
TXT_EXTS = ['md', 'txt']
TXT_URL_PREFIX = 'https://github.com/conanhujinming/comments-for-awesome-courses/blob/main/'
BIN_URL_PREFIX = 'https://github.com/conanhujinming/comments-for-awesome-courses/raw/main/'
def list_files(course: str):
filelist_texts = '## 文件列表\n\n'
readme_path = ''
for root, dirs, files in os.walk(course):
files.sort()
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, TXT_URL_PREFIX + quote('{}/{}'.format(root, f)))
else:
filelist_texts += '{}- [{}]({})\n'.format(subindent,
f, BIN_URL_PREFIX + quote('{}/{}'.format(root, f)))
elif root == course and readme_path == '':
readme_path = '{}/{}'.format(root, f)
return filelist_texts, readme_path
def generate_md(course: str, filelist_texts: str, readme_path: str, topic: str):
final_texts = ['\n\n'.encode(), filelist_texts.encode()]
if readme_path:
with open(readme_path, 'rb') as file:
final_texts = file.readlines() + final_texts
topic_path = os.path.join('docs', topic)
if not os.path.isdir(topic_path):
os.mkdir(topic_path)
with open(os.path.join(topic_path, '{}.md'.format(course)), 'wb') as file:
file.writelines(final_texts)
if __name__ == '__main__':
if not os.path.isdir('docs'):
os.mkdir('docs')
topics = list(filter(lambda x: os.path.isdir(x) and (
x not in EXCLUDE_DIRS), os.listdir('.'))) # list topics
for topic in topics:
topic_path = os.path.join('.', topic)
courses = list(filter(lambda x: os.path.isdir(os.path.join(topic_path, x)) and (
x not in EXCLUDE_DIRS), os.listdir(topic_path))) # list courses
for course in courses:
course_path = os.path.join(".", topic, course)
filelist_texts, readme_path = list_files(course_path)
generate_md(course, filelist_texts, readme_path, topic)
with open('README.md', 'rb') as file:
mainreadme_lines = file.readlines()
with open('docs/index.md', 'wb') as file:
file.writelines(mainreadme_lines)