Codebase list python-livereload / debian/2.2.0-1 livereload / __init__.py
debian/2.2.0-1

Tree @debian/2.2.0-1 (Download .tar.gz)

__init__.py @debian/2.2.0-1raw · history · blame

"""
    livereload
    ~~~~~~~~~~

    A python version of livereload.

    :copyright: (c) 2013 by Hsiaoming Yang
"""

__version__ = '2.2.0'
__author__ = 'Hsiaoming Yang <me@lepture.com>'
__homepage__ = 'https://github.com/lepture/python-livereload'

from .server import Server, shell

__all__ = ('Server', 'shell')