mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	 dcddc10a50
			
		
	
	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.
		
			
				
	
	
		
			22 lines
		
	
	
		
			506 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 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)
 |