2021-06-03 11:43:42 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-06-24 13:06:16 +02:00
|
|
|
"""
|
|
|
|
yt-dlp --help | make_readme.py
|
|
|
|
This must be run in a console of correct width
|
|
|
|
"""
|
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2022-06-24 13:06:16 +02:00
|
|
|
|
2022-04-17 19:18:50 +02:00
|
|
|
import functools
|
2012-12-07 14:45:16 +01:00
|
|
|
import re
|
2022-08-08 21:38:47 +02:00
|
|
|
|
|
|
|
from devscripts.utils import read_file, write_file
|
2012-12-07 14:45:16 +01:00
|
|
|
|
2012-12-07 21:40:06 +01:00
|
|
|
README_FILE = 'README.md'
|
2012-12-07 14:45:16 +01:00
|
|
|
|
2022-04-17 22:58:28 +02:00
|
|
|
OPTIONS_START = 'General Options:'
|
|
|
|
OPTIONS_END = 'CONFIGURATION'
|
|
|
|
EPILOG_START = 'See full documentation'
|
2022-05-25 14:23:46 +02:00
|
|
|
ALLOWED_OVERSHOOT = 2
|
2022-04-17 22:58:28 +02:00
|
|
|
|
2022-05-27 01:06:23 +02:00
|
|
|
DISABLE_PATCH = object()
|
|
|
|
|
2022-04-17 22:58:28 +02:00
|
|
|
|
2022-04-17 19:18:50 +02: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-05 04:44:29 +01:00
|
|
|
|
2022-04-17 19:18:50 +02:00
|
|
|
|
|
|
|
def apply_patch(text, patch):
|
2022-05-27 01:06:23 +02:00
|
|
|
return text if patch[0] is DISABLE_PATCH else re.sub(*patch, text)
|
2022-04-17 19:18:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
options = take_section(sys.stdin.read(), f'\n {OPTIONS_START}', f'\n{EPILOG_START}', shift=1)
|
|
|
|
|
2022-05-25 14:23:46 +02:00
|
|
|
max_width = max(map(len, options.split('\n')))
|
2022-04-17 19:18:50 +02:00
|
|
|
switch_col_width = len(re.search(r'(?m)^\s{5,}', options).group())
|
|
|
|
delim = f'\n{" " * switch_col_width}'
|
|
|
|
|
|
|
|
PATCHES = (
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Standardize `--update` message
|
2022-07-29 17:03:01 +02:00
|
|
|
r'(?m)^( -U, --update\s+).+(\n \s.+)*$',
|
|
|
|
r'\1Update this program to the latest version',
|
|
|
|
),
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Headings
|
2022-04-17 19:18:50 +02:00
|
|
|
r'(?m)^ (\w.+\n)( (?=\w))?',
|
|
|
|
r'## \1'
|
|
|
|
),
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Fixup `--date` formatting
|
|
|
|
rf'(?m)( --date DATE.+({delim}[^\[]+)*)\[.+({delim}.+)*$',
|
|
|
|
(rf'\1[now|today|yesterday][-N[day|week|month|year]].{delim}'
|
|
|
|
f'E.g. "--date today-2weeks" downloads only{delim}'
|
|
|
|
'videos uploaded on the same day two weeks ago'),
|
|
|
|
),
|
|
|
|
( # Do not split URLs
|
2022-04-17 19:18:50 +02:00
|
|
|
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'))
|
|
|
|
),
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Do not split "words"
|
2022-05-27 01:06:23 +02:00
|
|
|
rf'(?m)({delim}\S+)+$',
|
|
|
|
lambda mobj: ''.join((delim, mobj.group(0).replace(delim, '')))
|
|
|
|
),
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Allow overshooting last line
|
2022-05-25 14:23:46 +02:00
|
|
|
rf'(?m)^(?P<prev>.+)${delim}(?P<current>.+)$(?!{delim})',
|
|
|
|
lambda mobj: (mobj.group().replace(delim, ' ')
|
|
|
|
if len(mobj.group()) - len(delim) + 1 <= max_width + ALLOWED_OVERSHOOT
|
|
|
|
else mobj.group())
|
|
|
|
),
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Avoid newline when a space is available b/w switch and description
|
2022-05-27 01:06:23 +02:00
|
|
|
DISABLE_PATCH, # This creates issues with prepare_manpage
|
|
|
|
r'(?m)^(\s{4}-.{%d})(%s)' % (switch_col_width - 6, delim),
|
|
|
|
r'\1 '
|
|
|
|
),
|
2023-03-03 18:03:12 +01:00
|
|
|
( # Replace brackets with a Markdown link
|
|
|
|
r'SponsorBlock API \((http.+)\)',
|
|
|
|
r'[SponsorBlock API](\1)'
|
|
|
|
),
|
2022-04-17 19:18:50 +02:00
|
|
|
)
|
2012-12-07 14:45:16 +01:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
readme = read_file(README_FILE)
|
2012-12-07 14:45:16 +01:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
write_file(README_FILE, ''.join((
|
|
|
|
take_section(readme, end=f'## {OPTIONS_START}'),
|
|
|
|
functools.reduce(apply_patch, PATCHES, options),
|
|
|
|
take_section(readme, f'# {OPTIONS_END}'),
|
|
|
|
)))
|