mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
463 B
Python
21 lines
463 B
Python
12 years ago
|
import sys
|
||
|
import re
|
||
|
|
||
|
helptext = sys.stdin.read()
|
||
|
|
||
|
f = open('README.md')
|
||
|
oldreadme = f.read()
|
||
|
f.close()
|
||
|
|
||
|
header = oldreadme[:oldreadme.index('# OPTIONS')]
|
||
|
footer = oldreadme[oldreadme.index('# CONFIGURATION'):]
|
||
|
|
||
|
options = helptext[helptext.index(' General Options:')+19:]
|
||
|
options = re.sub(r'^ (\w.+)$', r'## \1', options, flags=re.M)
|
||
|
options = '# OPTIONS\n' + options + '\n'
|
||
|
|
||
|
f = open('README.md', 'w')
|
||
|
f.write(header)
|
||
|
f.write(options)
|
||
|
f.write(footer)
|
||
|
f.close()
|