#!/usr/bin/env python

if __name__ == '__main__':

    # Allows you to a relative import from the parent folder
    import os.path
    import sys
    sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir))

    from youtube_upload import main    
    main.run()
