-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathrender_readmes.py
More file actions
453 lines (407 loc) · 13.9 KB
/
Copy pathrender_readmes.py
File metadata and controls
453 lines (407 loc) · 13.9 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
#!/usr/bin/env python3
"""Render the browsable catalog sections in READMEs and the Project Radar table."""
from __future__ import annotations
import argparse
import html
import sys
from collections.abc import Mapping, Sequence
from datetime import date, datetime
from pathlib import Path
from typing import Any
from urllib.parse import quote
try:
from tools.catalog import (
CatalogLoadError,
load_catalog,
load_radar,
validate_catalog,
validate_radar,
)
except ModuleNotFoundError: # Direct ``python tools/render_readmes.py`` execution.
from catalog import (
CatalogLoadError,
load_catalog,
load_radar,
validate_catalog,
validate_radar,
)
ROOT_DIR = Path(__file__).resolve().parent.parent
DEFAULT_CATALOG = ROOT_DIR / "catalog"
START_MARKER = "<!-- catalog-index:start -->"
END_MARKER = "<!-- catalog-index:end -->"
RADAR_START_MARKER = "<!-- radar-index:start -->"
RADAR_END_MARKER = "<!-- radar-index:end -->"
RADAR_CATEGORY_LABELS = {
"en": {
"tooling-packaging": "Tooling & Packaging",
"code-quality": "Code Quality",
"web-apis": "Web & APIs",
"ai-agents": "AI Agents",
"ai-tools": "AI Tools",
"data-pipelines": "Data & Pipelines",
"notebooks": "Interactive Notebooks",
},
"zh": {
"tooling-packaging": "工具与打包",
"code-quality": "代码质量",
"web-apis": "Web 与 API",
"ai-agents": "AI Agent",
"ai-tools": "AI 工具",
"data-pipelines": "数据与管线",
"notebooks": "交互式笔记本",
},
}
AI_FAMILIARITY_LABELS = {
"en": {
"low": "AI: low",
"medium": "AI: medium",
"high": "AI: high",
},
"zh": {
"low": "AI 熟悉度:低",
"medium": "AI 熟悉度:中",
"high": "AI 熟悉度:高",
},
}
LEVEL_LABELS = {
"en": {
"beginner": "Beginner",
"intermediate": "Intermediate",
"advanced": "Advanced",
"all-levels": "All levels",
},
"zh": {
"beginner": "入门",
"intermediate": "进阶",
"advanced": "高级",
"all-levels": "所有阶段",
},
}
LANGUAGE_LABELS = {
"en": {"en": "English", "zh": "Chinese", "multilingual": "Multilingual"},
"zh": {"en": "英语", "zh": "中文", "multilingual": "多语言"},
}
SOURCE_LABELS = {
"en": {
"official-docs": "Official docs",
"official-standard": "Official standard",
"official-project": "Official project",
},
"zh": {
"official-docs": "官方文档",
"official-standard": "正式标准",
"official-project": "官方项目",
},
}
def _text(value: Any) -> str:
escaped = html.escape(str(value), quote=False)
return (
escaped.replace("\\", "\\\\")
.replace("|", "\\|")
.replace("[", "\\[")
.replace("]", "\\]")
.replace("\n", " ")
)
def _url(value: Any) -> str:
return quote(str(value), safe=":/?&=#%@+;,~-._")
def _date_text(value: Any) -> str:
if isinstance(value, datetime):
return value.date().isoformat()
if isinstance(value, date):
return value.isoformat()
return _text(value)
def _resource_meta(resource: Mapping[str, Any], lang: str) -> str:
source = SOURCE_LABELS[lang][str(resource["source_type"])]
featured = "Featured" if lang == "en" else "精选"
if resource.get("featured"):
return f"{source} · {featured}"
return source
def _access_and_risk(resource: Mapping[str, Any], lang: str) -> str:
if lang == "zh":
access = (
"通常需要 API Key" if resource["requires_key"] else "无需 API Key"
)
risk = (
"检查权限与副作用" if resource["risk"] == "medium" else "低风险"
)
else:
access = (
"API key typically required"
if resource["requires_key"]
else "No API key"
)
risk = (
"Review permissions and side effects"
if resource["risk"] == "medium"
else "Low risk"
)
return f"{access}<br>{risk}"
def render_catalog_index(data: Mapping[str, Any], *, lang: str) -> str:
if lang not in {"en", "zh"}:
raise ValueError("lang must be 'en' or 'zh'")
metadata = data["catalog"]
paths: Sequence[Mapping[str, Any]] = metadata["paths"]
resources: Sequence[Mapping[str, Any]] = data["resources"]
engineering_depth_count = sum(
resource["level"] in {"intermediate", "advanced"}
for resource in resources
)
lines: list[str] = [
START_MARKER,
"<!-- Generated by tools/render_readmes.py; edit catalog/ instead. -->",
]
if lang == "zh":
review_summary = (
f"> **{len(resources)} 条已审核资源** · 最近整体审核:"
f"{_date_text(metadata['reviewed_on'])} · "
f"{engineering_depth_count} 条进阶或高级资源 · 一手来源优先"
)
lines.extend(
[
review_summary,
"",
"### 选择学习路径",
"",
]
)
else:
review_summary = (
f"> **{len(resources)} reviewed resources** · Catalog reviewed "
f"{_date_text(metadata['reviewed_on'])} · "
f"{engineering_depth_count} intermediate or advanced · "
"Primary sources first"
)
lines.extend(
[
review_summary,
"",
"### Choose a learning path",
"",
]
)
for path in paths:
title = path["title_zh"] if lang == "zh" else path["title_en"]
summary = path["summary_zh"] if lang == "zh" else path["summary_en"]
path_resources = [item for item in resources if item["path"] == path["id"]]
unit = "条资源" if lang == "zh" else "resources"
lines.append(
f"- [**{_text(title)}**](#path-{path['id']}) — {_text(summary)} "
f"({len(path_resources)} {unit})"
)
for path in paths:
title = path["title_zh"] if lang == "zh" else path["title_en"]
summary = path["summary_zh"] if lang == "zh" else path["summary_en"]
path_resources = [item for item in resources if item["path"] == path["id"]]
lines.extend(
[
"",
f'<a id="path-{path["id"]}"></a>',
f"### {_text(title)}",
"",
_text(summary),
"",
]
)
if lang == "zh":
lines.extend(
[
"| 资源 | 为什么值得看 | 难度与语言 | "
"访问与风险 | 审核日期 |",
"| --- | --- | --- | --- | --- |",
]
)
else:
lines.extend(
[
"| Resource | Why it is useful | Level and language | "
"Access and risk | Reviewed |",
"| --- | --- | --- | --- | --- |",
]
)
for resource in path_resources:
why = resource["why_zh"] if lang == "zh" else resource["why_en"]
level = LEVEL_LABELS[lang][str(resource["level"])]
language = LANGUAGE_LABELS[lang][str(resource["language"])]
resource_link = (
f"[{_text(resource['title'])}]({_url(resource['url'])})"
f"<br><sub>{_resource_meta(resource, lang)}</sub>"
)
lines.append(
"| "
+ " | ".join(
(
resource_link,
_text(why),
f"{level}<br>{language}",
_access_and_risk(resource, lang),
_date_text(resource["reviewed_on"]),
)
)
+ " |"
)
if lang == "zh":
contribution = (
"没有找到合适的官方资料?可以[建议资源或报告错误]"
"(https://github.com/flypythoncom/python/issues/new/choose)。"
)
lines.extend(
[
"",
contribution,
END_MARKER,
]
)
else:
contribution = (
"Missing an important official source? "
"[Propose a resource or report a correction]"
"(https://github.com/flypythoncom/python/issues/new/choose)."
)
lines.extend(
[
"",
contribution,
END_MARKER,
]
)
return "\n".join(lines)
def replace_generated_block(content: str, generated: str) -> str:
if content.count(START_MARKER) != 1 or content.count(END_MARKER) != 1:
raise ValueError("README must contain exactly one catalog marker pair")
before, remainder = content.split(START_MARKER, maxsplit=1)
_, after = remainder.split(END_MARKER, maxsplit=1)
return before + generated + after
def render_radar_index(
projects: Sequence[Mapping[str, Any]], *, lang: str
) -> str:
if lang not in {"en", "zh"}:
raise ValueError("lang must be 'en' or 'zh'")
lines: list[str] = [
RADAR_START_MARKER,
"<!-- Generated by tools/render_readmes.py; edit catalog/projects/*.yml instead. -->",
]
if lang == "zh":
lines.extend(
[
"| 项目 | 类别 | 状态 | AI 熟悉度 | 推荐理由 | 何时不用 / 风险 | 审核日期 |",
"| --- | --- | --- | --- | --- | --- | --- |",
]
)
else:
lines.extend(
[
"| Project | Category | Status | AI familiarity | Why it matters | When not to use / Risk | Reviewed |",
"| --- | --- | --- | --- | --- | --- | --- |",
]
)
for project in projects:
repo = str(project["repo"])
name = repo.split("/", 1)[1]
category = RADAR_CATEGORY_LABELS[lang][str(project["category"])]
familiarity = AI_FAMILIARITY_LABELS[lang][str(project["ai_familiarity"])]
if lang == "zh":
rationale = project["rationale_zh"]
caution = f"{project['when_not_to_use_zh']}<br>**风险:**{project['risk_zh']}"
else:
rationale = project["rationale_en"]
caution = f"{project['when_not_to_use_en']}<br>**Risk:** {project['risk_en']}"
project_link = (
f"[{_text(name)}]({_url(project['url'])})"
f"<br><sub>{_text(project['repo'])} · {_text(project['license'])}</sub>"
)
lines.append(
"| "
+ " | ".join(
(
project_link,
_text(category),
f"`{project['status']}`",
_text(familiarity),
_text(rationale),
_text(caution),
_date_text(project["reviewed_on"]),
)
)
+ " |"
)
lines.append(RADAR_END_MARKER)
return "\n".join(lines)
def replace_radar_block(content: str, generated: str) -> str:
if (
content.count(RADAR_START_MARKER) != 1
or content.count(RADAR_END_MARKER) != 1
):
raise ValueError("Radar README must contain exactly one radar marker pair")
before, remainder = content.split(RADAR_START_MARKER, maxsplit=1)
_, after = remainder.split(RADAR_END_MARKER, maxsplit=1)
return before + generated + after
def build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--catalog", type=Path, default=DEFAULT_CATALOG)
parser.add_argument(
"--check",
action="store_true",
help="fail when either generated README section is out of date",
)
return parser
def run(argv: list[str] | None = None) -> int:
args = build_parser().parse_args(argv)
try:
data = load_catalog(args.catalog)
except CatalogLoadError as exc:
print(str(exc), file=sys.stderr)
return 2
try:
radar_projects = load_radar(args.catalog / "projects")
except CatalogLoadError as exc:
print(str(exc), file=sys.stderr)
return 2
issues = validate_catalog(data)
issues += list(validate_radar(radar_projects))
if issues:
for issue in issues:
print(f"{issue.location}: {issue.code}: {issue.message}", file=sys.stderr)
return 1
targets = (
(ROOT_DIR / "README.md", "en", render_catalog_index(data, lang="en"), False),
(ROOT_DIR / "README_cn.md", "zh", render_catalog_index(data, lang="zh"), False),
(
ROOT_DIR / "catalog" / "projects" / "README.md",
"en",
render_radar_index(radar_projects, lang="en"),
True,
),
(
ROOT_DIR / "catalog" / "projects" / "README_cn.md",
"zh",
render_radar_index(radar_projects, lang="zh"),
True,
),
)
stale: list[Path] = []
for path, _lang, generated, radar in targets:
current = path.read_text(encoding="utf-8")
replacer = replace_radar_block if radar else replace_generated_block
try:
expected = replacer(current, generated)
except ValueError as exc:
print(f"{path}: {exc}", file=sys.stderr)
return 2
if current == expected:
continue
if args.check:
stale.append(path)
else:
path.write_text(expected, encoding="utf-8")
print(f"updated {path}")
if stale:
for path in stale:
print(f"generated section is out of date: {path}", file=sys.stderr)
return 1
if args.check:
print("README catalog and radar sections current")
return 0
def main() -> None:
raise SystemExit(run())
if __name__ == "__main__":
main()