2021-06-03 05:43:42 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# yt-dlp --help | make_readme.py
|
|
|
|
# This must be run in a console of correct width
|
2022-04-17 13:18:50 -04:00
|
|
|
import functools
|
2012-12-07 08:45:16 -05:00
|
|
|
import re
|
2022-04-11 18:32:57 -04:00
|
|
|
import sys
|
2012-12-07 08:45:16 -05:00
|
|
|
|
2012-12-07 15:40:06 -05:00
|
|
|
README_FILE = 'README.md'
|
2012-12-07 08:45:16 -05:00
|
|
|
|
2022-04-17 16:58:28 -04:00
|
|
|
OPTIONS_START = 'General Options:'
|
|
|
|
OPTIONS_END = 'CONFIGURATION'
|
|
|
|
EPILOG_START = 'See full documentation'
|
|
|
|
|
|
|
|
|
2022-04-17 13:18:50 -04:00
|
|
|
def take_section(text, start=None, end=None, *, shift=0):
|
|
|
|
return text[
|
|
|
|
text.index(start) + shift if start else None:
|
|
|
|
text.index(end) + shift if end else None
|
|
|
|
]
|
2014-01-04 22:44:29 -05:00
|
|
|
|
2022-04-17 13:18:50 -04:00
|
|
|
|
|
|
|
def apply_patch(text, patch):
|
|
|
|
return re.sub(*patch, text)
|
|
|
|
|
|
|
|
|
|
|
|
options = take_section(sys.stdin.read(), f'\n {OPTIONS_START}', f'\n{EPILOG_START}', shift=1)
|
|
|
|
|
|
|
|
switch_col_width = len(re.search(r'(?m)^\s{5,}', options).group())
|
|
|
|
delim = f'\n{" " * switch_col_width}'
|
|
|
|
|
|
|
|
PATCHES = (
|
|
|
|
( # Headings
|
|
|
|
r'(?m)^ (\w.+\n)( (?=\w))?',
|
|
|
|
r'## \1'
|
|
|
|
),
|
|
|
|
( # Do not split URLs
|
|
|
|
rf'({delim[:-1]})? (?P<label>\[\S+\] )?(?P<url>https?({delim})?:({delim})?/({delim})?/(({delim})?\S+)+)\s',
|
|
|
|
lambda mobj: ''.join((delim, mobj.group('label') or '', re.sub(r'\s+', '', mobj.group('url')), '\n'))
|
|
|
|
),
|
|
|
|
# This creates issues with prepare_manpage
|
|
|
|
# ( # Avoid newline when a space is available b/w switch and description
|
|
|
|
# r'(?m)^(\s{4}-.{%d})(%s)' % (switch_col_width - 6, delim),
|
|
|
|
# r'\1 '
|
|
|
|
# ),
|
|
|
|
)
|
2012-12-07 08:45:16 -05:00
|
|
|
|
2022-04-17 16:58:28 -04:00
|
|
|
with open(README_FILE, encoding='utf-8') as f:
|
|
|
|
readme = f.read()
|
2012-12-07 08:45:16 -05:00
|
|
|
|
2022-04-11 11:10:28 -04:00
|
|
|
with open(README_FILE, 'w', encoding='utf-8') as f:
|
2022-04-17 13:18:50 -04:00
|
|
|
f.write(''.join((
|
|
|
|
take_section(readme, end=f'## {OPTIONS_START}'),
|
|
|
|
functools.reduce(apply_patch, PATCHES, options),
|
|
|
|
take_section(readme, f'# {OPTIONS_END}'),
|
|
|
|
)))
|