youtube-upload 296 B

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