]> jfr.im git - yt-dlp.git/blame - devscripts/make_readme.py
[cleanup] Misc fixes
[yt-dlp.git] / devscripts / make_readme.py
CommitLineData
cc52de43 1#!/usr/bin/env python3
2
3# yt-dlp --help | make_readme.py
4# This must be run in a console of correct width
c487cf00 5import functools
4bb028f4 6import re
f8271158 7import sys
4bb028f4 8
682407f2 9README_FILE = 'README.md'
4bb028f4 10
19a03940 11OPTIONS_START = 'General Options:'
12OPTIONS_END = 'CONFIGURATION'
13EPILOG_START = 'See full documentation'
14
8a82af35 15DISABLE_PATCH = object()
16
19a03940 17
c487cf00 18def take_section(text, start=None, end=None, *, shift=0):
19 return text[
20 text.index(start) + shift if start else None:
21 text.index(end) + shift if end else None
22 ]
49f2bf76 23
c487cf00 24
25def apply_patch(text, patch):
8a82af35 26 return text if patch[0] is DISABLE_PATCH else re.sub(*patch, text)
c487cf00 27
28
29options = take_section(sys.stdin.read(), f'\n {OPTIONS_START}', f'\n{EPILOG_START}', shift=1)
30
31switch_col_width = len(re.search(r'(?m)^\s{5,}', options).group())
32delim = f'\n{" " * switch_col_width}'
33
34PATCHES = (
35 ( # Headings
36 r'(?m)^ (\w.+\n)( (?=\w))?',
37 r'## \1'
38 ),
39 ( # Do not split URLs
40 rf'({delim[:-1]})? (?P<label>\[\S+\] )?(?P<url>https?({delim})?:({delim})?/({delim})?/(({delim})?\S+)+)\s',
41 lambda mobj: ''.join((delim, mobj.group('label') or '', re.sub(r'\s+', '', mobj.group('url')), '\n'))
42 ),
8a82af35 43 ( # Do not split "words"
44 rf'(?m)({delim}\S+)+$',
45 lambda mobj: ''.join((delim, mobj.group(0).replace(delim, '')))
46 ),
47 ( # Avoid newline when a space is available b/w switch and description
48 DISABLE_PATCH, # This creates issues with prepare_manpage
49 r'(?m)^(\s{4}-.{%d})(%s)' % (switch_col_width - 6, delim),
50 r'\1 '
51 ),
c487cf00 52)
4bb028f4 53
19a03940 54with open(README_FILE, encoding='utf-8') as f:
55 readme = f.read()
4bb028f4 56
86e5f3ed 57with open(README_FILE, 'w', encoding='utf-8') as f:
c487cf00 58 f.write(''.join((
59 take_section(readme, end=f'## {OPTIONS_START}'),
60 functools.reduce(apply_patch, PATCHES, options),
61 take_section(readme, f'# {OPTIONS_END}'),
62 )))