WebElements -


GPLv2
Linux
Python

软件简介

WebElements 是一组 Python 对象用来在服务器端生成 Web 应用,面向服务器端开发,代码可非常方便的进行重用。

示例代码:

from WebElements import Document, Display

page = Document()
page += Display.Label(text="Hello World!")
print page

生成的代码:

<!DOCTYPE html>
<html>
 <head>
  <title>
  </title>
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </meta>
 </head>
 <body>
  <label>
   Hello World!
  </label>
 </body>
</html>