youtube-upload (296B)
1 #!/usr/bin/env python 2 3 if __name__ == '__main__': 4 5 #Allows you to a relative import from the parent folder 6 import os.path, sys 7 sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir)) 8 9 from youtube_upload import main 10 main.run()