python html5 examples,dominate: Dominate 是个 Python 库,使用 DOM API 来创建和操作 HTML 文档...

Dominate

Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API.

It allows you to write HTML pages in pure Python very concisely, which eliminates the need to learn another template language, and lets you take advantage of the more powerful features of Python.

dominate.svg?style=flat

master.svg?style=flat

master.svg?style=flat

Python:

import dominate

from dominate.tags import *

doc = dominate.document(title='Dominate your HTML')

with doc.head:

link(rel='stylesheet', href='style.css')

script(type='text/javascript', src='script.js')

with doc:

with div(id='header').add(ol()):

for i in ['home', 'about', 'contact']:

li(a(i.title(), href='/%s.html' % i))

with div():

attr(cls='body')

p('Lorem ipsum..')

print(doc)

Output:

Dominate your HTML

Lorem ipsum..

Installation

The recommended way to install dominate is with

pip:

sudo pip install dominate

dominate.svg?style=flat

dominate.svg?style=flat

Developed By

Git repository located at

github.com/Knio/dominate

Examples

All examples assume you have imported the appropriate tags or entire tag set:

from dominate.tags import *

Hello, World!

The most basic feature of dominate exposes a class for each HTML element, where the constructor

accepts child elements, text, or keyword attributes. dominate nodes return their HTML representation

from the __str__, __unicode__, and render() methods.

print(html(body(h1('Hello, World!'))))

Hello, World!

Attributes

Dominate can also use keyword arguments to append attributes onto your tags. Most of the attributes are a direct copy from the HTML spec with a few variations.

For attributes class and for which conflict with Python's reserved keywords, you can use the following aliases:

class

for

_class

_for

cls

fr

className

htmlFor

class_name

html_for

test = label(cls='classname anothername', fr='someinput')

print(test)

test = div(data_employee='101011')

print(test)

You can also modify the attributes of tags through a dictionary-like interface:

header = div()

header['id'] = 'header'

print(header)

Complex Structures

Through the use of the += operator and the .add() method you can easily create more advanced structures.

Create a simple list:

list = ul()

for item in range(4):

list += li('Item #', item)

print(list)

  • Item #0
  • Item #1
  • Item #2
  • Item #3

dominate supports iterables to help streamline your code:

print(ul(li(a(name, href=link), __pretty=False) for name, link in menu_items))

A simple document tree:

_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)

For clean code, the .add() method returns children in tuples. The above example can be cleaned up and expanded like this:

_html = html()

_head, _body = _html.add(head(title('Simple Document Tree')), body())

names = ['header', 'content', 'footer']

header, content, footer = _body.add([div(id=name) for name in names])

print(_html)

Simple Document Tree

You can modify the attributes of tags through a dictionary-like interface:

header = div()

header['id'] = 'header'

print(header)

Or the children of a tag though an array-line interface:

header = div('Test')

header[0] = 'Hello World'

print(header)

Hello World

Comments can be created using objects too!

print(comment('BEGIN HEADER'))

print(comment(p('Upgrade to newer IE!'), condition='lt IE9'))

Rendering

By default, render() tries to make all output human readable, with one HTML

element per line and two spaces of indentation.

This behavior can be controlled by the __pretty (default: True except for

certain element types like pre) attribute when creating an element, and by

the pretty (default: True), indent (default: ) and xhtml (default: False)

arguments to render(). Rendering options propagate to all descendant nodes.

a = div(span('Hello World'))

print(a.render())

Hello World

print(a.render(pretty=False))

Hello World

print(a.render(indent='\t'))

Hello World

a = div(span('Hello World'), __pretty=False)

print(a.render())

Hello World

d = div()

with d:

hr()

p("Test")

br()

print(d.render())

print(d.render(xhtml=True))


Test


Test

Context Managers

You can also add child elements using Python's with statement:

h = ul()

with h:

li('One')

li('Two')

li('Three')

print(h)

  • One
  • Two
  • Three

You can use this along with the other mechanisms of adding children elements, including nesting with statements, and it works as expected:

h = html()

with h.add(body()).add(div(id='content')):

h1('Hello World!')

p('Lorem ipsum ...')

with table().add(tbody()):

l = tr()

l += td('One')

l.add(td('Two'))

with l:

td('Three')

print(h)

Hello World!

Lorem ipsum ...

OneTwoThree

When the context is closed, any nodes that were not already added to something get added to the current context.

Attributes can be added to the current context with the attr function:

d = div()

with d:

attr(id='header')

print(d)

And text nodes can be added with the dominate.util.text function:

from dominate.util import text

para = p(__pretty=False)

with para:

text('Have a look at our ')

a('other products', href='/products')

print(para)

Have a look at our other products

Decorators

Dominate is great for creating reusable widgets for parts of your page. Consider this example:

def greeting(name):

with div() as d:

p('Hello, %s' % name)

return d

print(greeting('Bob'))

Hello, Bob

You can see the following pattern being repeated here:

def widget(parameters):

with tag() as t:

...

return t

This boilerplate can be avoided by using tags (objects and instances) as decorators

@div

def greeting(name):

p('Hello %s' % name)

print(greeting('Bob'))

Hello Bob

The decorated function will return a new instance of the tag used to decorate it, and execute in a with context which will collect all the nodes created inside it.

You can also use instances of tags as decorators, if you need to add attributes or other data to the root node of the widget.

Each call to the decorated function will return a copy of the node used to decorate it.

@div(h2('Welcome'), cls='greeting')

def greeting(name):

p('Hello %s' % name)

print(greeting('Bob'))

Welcome

Hello Bob

Creating Documents

Since creating the common structure of an HTML document everytime would be excessively tedious dominate provides a class to create and manage them for you: document.

When you create a new document, the basic HTML tag structure is created for you.

d = document()

print(d)

Dominate

The document class accepts title, doctype, and request keyword arguments.

The default values for these arguments are Dominate, , and None respectively.

The document class also provides helpers to allow you to access the title, head, and body nodes directly.

d = document()

>>> d.head

>>> d.body

>>> d.title

u'Dominate'

The document class also provides helpers to allow you to directly add nodes to the body tag.

d = document()

d += h1('Hello, World!')

d += p('This is a paragraph.')

print(d)

Dominate

Hello, World!

This is a paragraph.

Embedding HTML

If you need to embed a node of pre-formed HTML coming from a library such as markdown or the like, you can avoid escaped HTML by using the raw method from the dominate.util package:

from dominate.util import raw

...

td(raw('Example'))

Without the raw call, this code would render escaped HTML with lt, etc.

SVG

The dominate.svg module contains SVG tags similar to how dominate.tags contains HTML tags. SVG elements will automatically convert _ to - for dashed elements. For example:

from dominate.svg import *

print(circle(stroke_width=5))

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值