Metadata-Version: 1.1
Name: Pylatte
Version: 1.0
Summary: pylatte is Python embedded in HTML. so pylatte seem like php or jsp.
Home-page: http://pylatte.org
Author: Hwanseung Lee, Sangkeun Park
Author-email: pylatte@pylatte.org
License: MIT License
Download-URL: https://github.com/rucifer1217/pylatte
Description: 
              .. image:: http://pylatte.org/image/pylatte.png
                
                =======
                Pylatte 
                =======
                Pylatte : A Web Framework Based on Python 3 Pylatte is a web framework created specifically for Python 3. Pylatte is used pyl code to make web site. pyl code is compose to python and HTML. so pyl code seem like php code. easy to learn, easy to run.
                
                Visit to http://www.pylatte.org/
                
                mail : pylatte@pylatte.org
                
                Facebook Page : https://www.facebook.com/pylatte
                
                Sample code
                -----------
                The following code is a example pyl file.
                
                ::
                
                 <p>Pylatte</p>
                 {$
                 pyl = "HTML" + " + " + "python"
                 $}
                 <p>
                 {$=pyl$}
                 </p>
                
                The pyl code is translated by Pylatte to HTML in the browser.
                ::
                
                 <p>Pylatte</p>
                 <p>
                 HTML + python
                 </p>
                
                Functions
                ---------
                Translation Engine Pylatte uses pyl file format. pyl consists of HTML and Python. pyl is fully translated by the Pylatte engine into HTML. It is unique feature of Pylatte.
                
                Database
                --------
                To use the database, external library must be installed: the mysql(for mysql) module or pymongo3(for MonogoDB) module for Python 3.
                
                Simple and advanced SQL via specific functions that are similar to iBATIS are provided.
                
                Session
                -------
                A session is needed to distinguish each client.
                
                Filter
                ------
                If a filter is set, select pages pass through the filter.
                
                Form File
                ---------
                It is possible to upload a file to server via POST.
                
                URL Mapping
                -----------
                For security purposes, URL mapping transfers virtual URLs accessed by clients to web pages.
                
Keywords: Web Framework
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
