mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 20:47:07 +01:00
0f06bcd759
* [youtube] Fix `--youtube-skip-dash-manifest` * [build] Use `$()` in `Makefile`. Closes #3684 * Fix bug in385ffb467b
* Fix bug in43d7f5a5d0
* [cleanup] Remove unnecessary `utf-8` from `str.encode`/`bytes.decode` * [utils] LazyList: Expose unnecessarily "protected" attributes and other minor cleanup
31 lines
815 B
Python
Executable File
31 lines
815 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# yt-dlp --help | make_readme.py
|
|
# This must be run in a console of correct width
|
|
import re
|
|
import sys
|
|
|
|
README_FILE = 'README.md'
|
|
|
|
OPTIONS_START = 'General Options:'
|
|
OPTIONS_END = 'CONFIGURATION'
|
|
EPILOG_START = 'See full documentation'
|
|
|
|
|
|
helptext = sys.stdin.read()
|
|
if isinstance(helptext, bytes):
|
|
helptext = helptext.decode()
|
|
|
|
start, end = helptext.index(f'\n {OPTIONS_START}'), helptext.index(f'\n{EPILOG_START}')
|
|
options = re.sub(r'(?m)^ (\w.+)$', r'## \1', helptext[start + 1: end + 1])
|
|
|
|
with open(README_FILE, encoding='utf-8') as f:
|
|
readme = f.read()
|
|
|
|
header = readme[:readme.index(f'## {OPTIONS_START}')]
|
|
footer = readme[readme.index(f'# {OPTIONS_END}'):]
|
|
|
|
with open(README_FILE, 'w', encoding='utf-8') as f:
|
|
for part in (header, options, footer):
|
|
f.write(part)
|