معرفی شرکت ها


cottonmouth-0.2.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Pure-Python HTML generation
ویژگی مقدار
سیستم عامل -
نام فایل cottonmouth-0.2.2
نام cottonmouth
نسخه کتابخانه 0.2.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Noah Seger
ایمیل نویسنده nosamanuel@gmail.com.com
آدرس صفحه اصلی https://github.com/nosamanuel/cottonmouth
آدرس اینترنتی https://pypi.org/project/cottonmouth/
مجوز Copyright (c) 2013, Noah Seger
cottonmouth =========== Pure-Python HTML generation, inspired by [Hiccup][1]. ```python from cottonmouth.html import render from cottonmouth.tags import html, head, body, title, meta, link, h1 def welcome(user=None, **context): return ['p', 'Welcome' + (' back!' if user else '!')] content = ( # Feel free to use raw HTML '<!doctype html>', # Tags are represented as sequences with a tag name at the head [html, # Or just use strings instead of the default tag symbols ['head', [title, 'The Site'], # Attributes are passed as a dict immediately after the tag [meta, {'charset': 'utf-8'}], [link, dict(rel='stylesheet', type='text/css', href='static/layout.css')]], [body, # You can also call tags as functions with the content as # the first argument and attributes as `kwargs` [header, h1(u'The Website', id='header')], # Use "#id.class" shortcuts to easily create `div` elements ['#map.pretty-map'], # Functions will be called with context and the results rendered ['#main', welcome]]] ) render(*content, user=None) ``` Equivalent output: ```html <!doctype html> <html> <head> <title>The Site</title> <meta content="text/html;charset=utf-8" http-equiv="content-type"> <link href="static/layout.css" type="text/css" rel="stylesheet"> </head> <body> <h1 id="header">Welcome to the site!</h1> <div id="map" class="pretty-map"></div> <div id="main"> <p>Welcome!</p> </div> </body> </html> ``` ### Classes There's a shortcut for dynamic classes: strings or iterables of classnames are automatically appended to the sugared classname! ```python render(['.foo', {'class': 'bar baz'}]) # u'<div class="foo bar baz"></div>' render(['.foo', {'class': ['bar', 'baz']}]) # u'<div class="foo bar baz"></div>' ``` ### Installation pip install cottonmouth ### Testing python setup.py test ### License BSD Copyright 2013, Noah Seger [1]: https://github.com/weavejester/hiccup


نحوه نصب


نصب پکیج whl cottonmouth-0.2.2:

    pip install cottonmouth-0.2.2.whl


نصب پکیج tar.gz cottonmouth-0.2.2:

    pip install cottonmouth-0.2.2.tar.gz