]> jfr.im git - yt-dlp.git/blame - devscripts/make_readme.py
[cleanup] Misc fixes (see desc)
[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'
64fa820c 14ALLOWED_OVERSHOOT = 2
19a03940 15
8a82af35 16DISABLE_PATCH = object()
17
19a03940 18
c487cf00 19def take_section(text, start=None, end=None, *, shift=0):
20 return text[
21 text.index(start) + shift if start else None:
22 text.index(end) + shift if end else None
23 ]
49f2bf76 24
c487cf00 25
26def apply_patch(text, patch):
8a82af35 27 return text if patch[0] is DISABLE_PATCH else re.sub(*patch, text)
c487cf00 28
29
30options = take_section(sys.stdin.read(), f'\n {OPTIONS_START}', f'\n{EPILOG_START}', shift=1)
31
64fa820c 32max_width = max(map(len, options.split('\n')))
c487cf00 33switch_col_width = len(re.search(r'(?m)^\s{5,}', options).group())
34delim = f'\n{" " * switch_col_width}'
35
36PATCHES = (
37 ( # Headings
38 r'(?m)^ (\w.+\n)( (?=\w))?',
39 r'## \1'
40 ),
41 ( # Do not split URLs
42 rf'({delim[:-1]})? (?P<label>\[\S+\] )?(?P<url>https?({delim})?:({delim})?/({delim})?/(({delim})?\S+)+)\s',
43 lambda mobj: ''.join((delim, mobj.group('label') or '', re.sub(r'\s+', '', mobj.group('url')), '\n'))
44 ),
8a82af35 45 ( # Do not split "words"
46 rf'(?m)({delim}\S+)+$',
47 lambda mobj: ''.join((delim, mobj.group(0).replace(delim, '')))
48 ),
64fa820c 49 ( # Allow overshooting last line
50 rf'(?m)^(?P<prev>.+)${delim}(?P<current>.+)$(?!{delim})',
51 lambda mobj: (mobj.group().replace(delim, ' ')
52 if len(mobj.group()) - len(delim) + 1 <= max_width + ALLOWED_OVERSHOOT
53 else mobj.group())
54 ),
8a82af35 55 ( # Avoid newline when a space is available b/w switch and description
56 DISABLE_PATCH, # This creates issues with prepare_manpage
57 r'(?m)^(\s{4}-.{%d})(%s)' % (switch_col_width - 6, delim),
58 r'\1 '
59 ),
c487cf00 60)
4bb028f4 61
19a03940 62with open(README_FILE, encoding='utf-8') as f:
63 readme = f.read()
4bb028f4 64
86e5f3ed 65with open(README_FILE, 'w', encoding='utf-8') as f:
c487cf00 66 f.write(''.join((
67 take_section(readme, end=f'## {OPTIONS_START}'),
68 functools.reduce(apply_patch, PATCHES, options),
69 take_section(readme, f'# {OPTIONS_END}'),
70 )))