操作HTML的Python库:Dominate

jopen 11年前

Dominate是一个Python库使用一个优雅DOM API来创建和操作HTML文档。 允许用户用非常简洁的纯 Python 来编写 HTML 页面。而且又可以发挥 Python 自身强大的特性。

>>> _html = html()  >>> _body = _html.add(body())  >>> header  = _body.add(div(id='header'))  >>> content = _body.add(div(id='content'))  >>> footer  = _body.add(div(id='footer'))  >>> print _html  <html>    <body>      <div id="header"></div>      <div id="content"></div>      <div id="footer"></div>    </body>  </html>

项目主页:http://www.open-open.com/lib/view/home/1393574056099