Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(8) | Derive(0) | Import(0)
src/p/y/py-1.4.20/doc/example/genhtml.py py(Download)
doc = html.html( html.head( html.meta(name="Content-Type", value="text/html; charset=latin1")), html.body( [html.p(p) for p in paras]))
src/d/e/devpi-server-1.2.2/devpi_server/views.py devpi-server(Download)
def simple_html_body(title, bodytags, extrahead=""): return html.html( html.head( html.title(title), extrahead,
src/p/l/plexnet-HEAD/third_party/generic/pypy/pypy/translator/microbench/pybench/pybench.py plexnet(Download)
def __init__(self, title=None): self.body = html.body() self.head = html.head() self.doc = html.html(self.head, self.body)
src/s/y/Sypy-HEAD/translator/microbench/pybench/pybench.py Sypy(Download)
def __init__(self, title=None): self.body = html.body() self.head = html.head() self.doc = html.html(self.head, self.body)
src/p/y/pytest-mozwebqa-1.1.1/pytest_mozwebqa/html_report.py pytest-mozwebqa(Download)
doc = html.html( html.head( html.meta(charset='utf-8'), html.title('Test Report'), html.link(rel='stylesheet', href='style.css'),
src/p/y/pytest-mozwebqa-HEAD/pytest_mozwebqa/html_report.py pytest-mozwebqa(Download)
doc = html.html( html.head( html.meta(charset='utf-8'), html.title('Test Report'), html.link(rel='stylesheet', href='style.css'),
src/p/l/plexnet-HEAD/third_party/generic/pypy/py/xmlobj/testing/test_html.py plexnet(Download)
def test_singleton(): h = html.head(html.link(href="foo")) assert unicode(h) == '<head><link href="foo"/></head>' h = html.head(html.script(src="foo"))