A very flexible static site generator written in python
Project description
Kart
A very flexible static site generator written in python
Getting started
Install Kart with pip
pip install Kart
Create a new file named main.py in your top directory with this code
from kart import Kart
kart = Kart()
kart.run()
In this configuration Kart will only build a basic blog with a paginated blog index and paginated tags. If you want to customize the urls of the blog you will have to modify main.py with custom python code
For the folder structure you can look at the test_blog example
You can then build and serve your site executing this script
python3 main.py serve
Disclaimer
Kart is not yet ready to use in a real-world scenario because it is in its early stage of its life and its api can change abruptly each minor verision.
If you want an example of a simple site you can look at the test_* folders
A complete explanation of the architecture and a step-by-step tutorial will be written soon
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.