Use relative imports
This commit is contained in:
		@@ -1,6 +1,8 @@
 | 
			
		||||
#!/usr/bin/env python
 | 
			
		||||
# -*- coding: utf-8 -*-
 | 
			
		||||
 | 
			
		||||
from __future__ import absolute_import
 | 
			
		||||
 | 
			
		||||
import math
 | 
			
		||||
import os
 | 
			
		||||
import re
 | 
			
		||||
@@ -12,7 +14,7 @@ import time
 | 
			
		||||
if os.name == 'nt':
 | 
			
		||||
    import ctypes
 | 
			
		||||
 | 
			
		||||
from utils import *
 | 
			
		||||
from .utils import *
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class FileDownloader(object):
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,8 @@
 | 
			
		||||
#!/usr/bin/env python
 | 
			
		||||
# -*- coding: utf-8 -*-
 | 
			
		||||
 | 
			
		||||
from __future__ import absolute_import
 | 
			
		||||
 | 
			
		||||
import datetime
 | 
			
		||||
import netrc
 | 
			
		||||
import os
 | 
			
		||||
@@ -12,7 +14,7 @@ import xml.etree.ElementTree
 | 
			
		||||
import random
 | 
			
		||||
import math
 | 
			
		||||
 | 
			
		||||
from utils import *
 | 
			
		||||
from .utils import *
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class InfoExtractor(object):
 | 
			
		||||
 
 | 
			
		||||
@@ -1,12 +1,14 @@
 | 
			
		||||
#!/usr/bin/env python
 | 
			
		||||
# -*- coding: utf-8 -*-
 | 
			
		||||
 | 
			
		||||
from __future__ import absolute_import
 | 
			
		||||
 | 
			
		||||
import os
 | 
			
		||||
import subprocess
 | 
			
		||||
import sys
 | 
			
		||||
import time
 | 
			
		||||
 | 
			
		||||
from utils import *
 | 
			
		||||
from .utils import *
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class PostProcessor(object):
 | 
			
		||||
 
 | 
			
		||||
@@ -2,6 +2,7 @@
 | 
			
		||||
# -*- coding: utf-8 -*-
 | 
			
		||||
 | 
			
		||||
from __future__ import with_statement
 | 
			
		||||
from __future__ import absolute_import
 | 
			
		||||
 | 
			
		||||
__authors__  = (
 | 
			
		||||
    'Ricardo Garcia Gonzalez',
 | 
			
		||||
@@ -39,10 +40,10 @@ import subprocess
 | 
			
		||||
import sys
 | 
			
		||||
import warnings
 | 
			
		||||
 | 
			
		||||
from utils import *
 | 
			
		||||
from FileDownloader import *
 | 
			
		||||
from InfoExtractors import *
 | 
			
		||||
from PostProcessor import *
 | 
			
		||||
from .utils import *
 | 
			
		||||
from .FileDownloader import *
 | 
			
		||||
from .InfoExtractors import *
 | 
			
		||||
from .PostProcessor import *
 | 
			
		||||
 | 
			
		||||
def updateSelf(downloader, filename):
 | 
			
		||||
    ''' Update the program file with the latest version from the repository '''
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
#!/usr/bin/env python
 | 
			
		||||
# -*- coding: utf-8 -*-
 | 
			
		||||
 | 
			
		||||
import __init__
 | 
			
		||||
import youtube_dl
 | 
			
		||||
 | 
			
		||||
if __name__ == '__main__':
 | 
			
		||||
    __init__.main()
 | 
			
		||||
    youtube_dl.main()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user