Codebase list python-livereload / run/21cad5d7-4319-45aa-8e3e-1e5dcb81b3f8/main debian / livereload
run/21cad5d7-4319-45aa-8e3e-1e5dcb81b3f8/main

Tree @run/21cad5d7-4319-45aa-8e3e-1e5dcb81b3f8/main (Download .tar.gz)

livereload @run/21cad5d7-4319-45aa-8e3e-1e5dcb81b3f8/mainraw · history · blame

#!/usr/bin/python3
import sys
import os
sys.path.insert(0, os.environ['PWD'])
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('livereload', 'console_scripts', 'livereload')()
    )