Skip to main content

brick is a pure python templating system.

Project description

brick is a pure Python block-based templating system.

###Examples

Let’s see some example:

from brick import Block from brick.tags import *

class LikeButton(Block):

def construct(self):

b = []

with Div(class_=[‘like-btn’]).into(b):

b += A(href=”#”)(“Like”)

return b

like_button = LikeButton()

like_button.render_buffer() >> <div class=”like-btn”><a href=”#”>Like</a></div>

###Installation brick is an official PyPi module, so you can use it simply with pip by doing:

pip install brick

###PyPI Page [http://pypi.python.org/pypi/brick](http://pypi.python.org/pypi/brick)

###Inspiration This library is heavily inspired by the public description of Quora’s webnode2 found [here](http://www.quora.com/Shreyes-Seshasai/Posts/Tech-Talk-webnode2-and-LiveNode).

###License MIT 2.0

###Authors - Garindra Prahandono (garindraprahandono@gmail.com)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brick-0.0.1.tar.gz (4.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page