Metadata-Version: 1.1
Name: livehtml
Version: 0.0.1
Summary: Simple development server for writing an html pages
Home-page: https://github.com/GrAndSE/livehtml
Author: Andrey Grygoryev
Author-email: undeadgrandse@gmail.com
License: BSD
Description: 
        Live HTML
        =========
        
        Simple tool that helps you to desing in the browser. You just need python
        interpreter:
        
            >>> import livehtml
            >>> livehtml.start_server('.')
        
        Now you can just open your favorite text editor or IDE, create new html file,
        write something like:
        
            <!doctype html>
            <html>
                <head></head>
                <body></body>
            </html>
        
        in this file and open it in browser like:
        
            http://127.0.0.1:8888/new-file.html
        
        And after any changes you'l save in your file you can immediately see the
        changes in browser.
        
Keywords: HTML css javascript server
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
Requires: tornado (>=2.2)
