Notepad/enter/Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/Python/Render Engine.md

1.9 KiB

Render is a static site generator for Python. There are a multitude of ways to set up a static site generator but with the current trend of desiring a "stack" for building things - Render seems to answer that call nicely.


Render Engine

PyTest Discord

Learn More

What is RenderEngine

The 3 layer Architecture

  • Page - A single webpage item built from content, a template, raw data, or a combination of those things.
  • Collection - A group of webpages built from the same template, organized in a single directory
  • Site - The container that helps to render all Pages and Collections in with uniform settigns and variables

Installing Render Engine

In order to use render engine, you must have python 3.10 installed. You can download python from python.org.

Render Engine is available in PyPI and can be installed using pip:

pip install render-engine

Getting Started

Check out the Getting Started Section in the Documentation