Skip to main content

Code over configuration static site generator.

Project description

lightweight: a static site generator

PyPI Build Status Test Coverage Supported Python

Code over configuration.

Documentation

Examples

Features

  • Jinja2 templates
  • Markdown rendering with YAML frontmatter
  • Sass/SCSS rendering
  • Dev server
  • Template project
  • Clean extensible API
  • Fast Enough
  • Fails Fast

Installation

Available from PyPI:

pip install lightweight

Quick Example

from lightweight import Site, SiteCli, markdown, paths, jinja, template, sass


def blog_posts(source):
    post_template = template('_templates_/blog/post.html')
    # Use globs to select files. # source = 'posts/**.md'
    return (markdown(path, post_template) for path in paths(source))

def example(url):
    site = Site(url)

    # Render an index page from Jinja2 template.
    site.add('index.html', jinja('index.html'))

    # Render markdown blog posts.
    [site.add(f'blog/{post.source_path.stem}.html', post) for post in blog_posts('posts/**.md')]
    site.add('blog.html', jinja('posts.html'))

    # Render SASS to CSS.
    site.add('css/global.css', sass('styles/main.scss'))

    # Include a copy of a directory.
    site.add('img')
    site.add('fonts')
    site.add('js')

    return site   

def generate_prod():
    example(url='https://example.org/').generate(out='out')


if __name__ == '__main__':
    # Run CLI with `build` and `serve` commands. 
    SiteCli(build=example).run()

Create a new project

Initialize a new project using init command:

lw init --url https://example.org example

It accepts multiple optional arguments:

lw init -h
usage: lw init [-h] [--title TITLE] location

Generate Lightweight skeleton application

positional arguments:
  location       the directory to initialize site generator in

optional arguments:
  -h, --help     show this help message and exit
  --title TITLE  the title of of the generated site

Dev Server

Lightweight includes a simple static web server with live reload serving at localhost:8080:

python -m website serve

Here website is a Python module

Host and port can be changed via:

python -m website serve --host 0.0.0.0 --port 80

The live reload can be disabled with --no-live-reload flag:

python -m website serve --no-live-reload

Otherwise every served HTML file will be injected with a javascript that polls /__live_reload_id__. The script triggers page reload when the value at that location changes. The /__live_reload_id__ is changed after regenerating the site upon change in --source directory.

To stop the server press Ctrl+C in terminal.

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.

Source Distribution

lightweight-1.0.0.dev51.tar.gz (224.0 kB view details)

Uploaded Source

Built Distribution

lightweight-1.0.0.dev51-py3-none-any.whl (256.7 kB view details)

Uploaded Python 3

File details

Details for the file lightweight-1.0.0.dev51.tar.gz.

File metadata

  • Download URL: lightweight-1.0.0.dev51.tar.gz
  • Upload date:
  • Size: 224.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for lightweight-1.0.0.dev51.tar.gz
Algorithm Hash digest
SHA256 18dc08fc82c8fc3c8ed64cc17b6ac08f752eddd695eb4d2858bbc5ae4d7c3ac1
MD5 5120bdba0c7b36f25bfc3263bc784c16
BLAKE2b-256 9d7fe799a771fb752d0037ee07f0582d75c84df7cef60e90ab52cbb6b507a7ba

See more details on using hashes here.

File details

Details for the file lightweight-1.0.0.dev51-py3-none-any.whl.

File metadata

  • Download URL: lightweight-1.0.0.dev51-py3-none-any.whl
  • Upload date:
  • Size: 256.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for lightweight-1.0.0.dev51-py3-none-any.whl
Algorithm Hash digest
SHA256 79a7c4444bd4f13977d8072dd18765e700323a3a494b0765197643ad43995dfd
MD5 7dd5caef751be4aa282d0e3b2a474f18
BLAKE2b-256 f9d47ef0dd9279ff29498e914939054e810cc09d89cf2971b07979f803b5fed3

See more details on using hashes here.

Supported by

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