mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
devscripts/make_readme.py in place of all that sedding, that has porting problems
This commit is contained in:
parent
fec89790b1
commit
4bb028f48e
2 changed files with 23 additions and 11 deletions
21
devscripts/make_readme.py
Normal file
21
devscripts/make_readme.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
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()
|
Loading…
Add table
Add a link
Reference in a new issue