mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
dcddc10a50
From now on, the line from __future__ import unicode_literals should be contained in every single Python file lest we run into any more 2.x/3.x issues. Going forward, we're likely to develop on 3.x only and would likely miss subtle bugs otherwise.
21 lines
506 B
Python
21 lines
506 B
Python
from __future__ import unicode_literals
|
|
|
|
import io
|
|
import os.path
|
|
import sys
|
|
import re
|
|
|
|
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
README_FILE = os.path.join(ROOT_DIR, 'README.md')
|
|
|
|
with io.open(README_FILE, encoding='utf-8') as f:
|
|
readme = f.read()
|
|
|
|
PREFIX = '%YOUTUBE-DL(1)\n\n# NAME\n'
|
|
readme = re.sub(r'(?s)# INSTALLATION.*?(?=# DESCRIPTION)', '', readme)
|
|
readme = PREFIX + readme
|
|
|
|
if sys.version_info < (3, 0):
|
|
print(readme.encode('utf-8'))
|
|
else:
|
|
print(readme)
|