Skip to main content

An extension providing a jade renderer for growler applications

Project description

A Growler render engine for processing jade template files. This uses the pyjade package with the mako base - though this should be strictly an implemenation detail and not a concern of the user.

Installation

To install the latest stable (published) version, use the pypi repository

pip install growler-jade

To use the (semi-stable) development branch, you can use pip to directly access the source repository

pip install git+https://github.com/pyGrowler/growler-jade.git@dev

Otherwise, you can install locally via

python setup.py install

Usage

The only class the user has to worry about is JadeRenderer, which can be found in either growler_jade.JadeRenderer or the namespace growler_ext.jade_renderer.JadeRenderer. The latter method is used by the growler extension auto-importer growler.ext, making importing multiple packages very clean.

A JadeRenderer is created with a path (which must exist) which contains the template files to render. There are currently no configuration options available, but this is likely to change. This object must be added to the application via the app.use() method. In all server middleware following this object, a the ‘render’ method will be available on the response object, allowing you to render any filename found in the given renderer’s path: res.render('foo') renders foo.jade found in the path.

Example

Here is a simple script which serves a single file, path/to/views/index.jade upon request to the root page:

from growler import App

from growler.ext import JadeRenderer # do NOT import growler.ext.JadeRenderer directly

app = App("Jade Example")

app.use(JadeRenderer("path/to/views"))

@app.get("/")
def index_page(req, res):
    if hasattr(req, 'user'):
        data = {'username': req.user.name}
    else:
        data = {'username': 'Anonymous'}

    # renders path/to/views/index.jade with values given data
    res.render("index", data)

app.create_server_and_run_forever(host='localhost', port=9000)

Contributing

Contributions are welcome that follow the Growler Contribution Guidelines.

License

No license has been chosen.

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

growler-jade-0.0.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

growler_jade-0.0.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file growler-jade-0.0.1.tar.gz.

File metadata

  • Download URL: growler-jade-0.0.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for growler-jade-0.0.1.tar.gz
Algorithm Hash digest
SHA256 0bc9f836326c499270ad71392b8f2ae23ee5606eb279122f72322cb5b2c3462e
MD5 30ce1067b260ac1d2abc893ca7c93c19
BLAKE2b-256 e00c0aeca401160aee40d98e49bbca8bd2a8d30e7c8d85521fadbcef294a58d2

See more details on using hashes here.

File details

Details for the file growler_jade-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for growler_jade-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4436a8db38d8a4bb97f9d2ab78ba08a2e2aedebb3d7f1ea70d96150b518cff99
MD5 26b0add4bfe8b6de2884bac08a6d57da
BLAKE2b-256 5ea722109acf81616276bae72406cad2fb163f6317fd7e891c11541dfac620f4

See more details on using hashes here.

Supported by

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