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
  • RSS/Atom feeds (basic implementation with ability to pass only plaintext to feeds)
  • Site nesting
  • Dev server
  • Template project
  • Clean extensible API
  • Fast Enough
  • Fails Fast

Installation

Available from PyPI:

pip install lightweight

Quick Example

from lightweight import Site, markdown, paths, jinja, template, rss, atom, 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.include('index.html', jinja('index.html'))

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

    # Syndicate RSS and Atom feeds.
    site.include('blog.atom.xml', atom(site['blog']))
    site.include('blog.rss.xml', rss(site['blog']))

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

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

    return site   

if __name__ == '__main__':
    # Create a site and generate by writing all of it’s content. 
    example(url='https://example.org/').generate()

Create a new project

Initialize a new project using init command:

lw init <location>

It accepts multiple optional arguments:

lw init -h
usage: lw.py init [-h] [--url URL] [--title TITLE] [--authors AUTHORS]
                  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
  --url URL          the url of the generated site
  --title TITLE      the title of of the generated site
  --authors AUTHORS  comma-separated list of names

Dev Server

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

lw serve run:dev

Here site is a Python module

Host and port can be set via:

lw serve run:dev --host 0.0.0.0 --port 80

The directory to resolve the module is provided as --source. It defaults to cwd. The source directory is watched for live reload.

lw serve run:dev --source ~/Projects/example

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

lw serve run:dev --no-live-reload

Otherwise every served HTML file will be injected with a javascript that polls /__live_reload_id__. The script reloads the page when value at that location changes. That happens 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.dev45.tar.gz (53.4 kB view details)

Uploaded Source

Built Distribution

lightweight-1.0.0.dev45-py3-none-any.whl (62.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev45.tar.gz
  • Upload date:
  • Size: 53.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6

File hashes

Hashes for lightweight-1.0.0.dev45.tar.gz
Algorithm Hash digest
SHA256 2404987ba1f5760412ef253f339fe77a9d553630fc3328f7e9a00c0c09a8c313
MD5 1f10277ebc57c26f5f9e63596aae5027
BLAKE2b-256 0e6ff14395a45bc8def9e7af7abb91008dfe027780207e5332e9c7d3a5cdc679

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev45-py3-none-any.whl
  • Upload date:
  • Size: 62.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6

File hashes

Hashes for lightweight-1.0.0.dev45-py3-none-any.whl
Algorithm Hash digest
SHA256 0d7a955c15bdc78025a3589eda1026bd643e1fb2f60a24701e9079d5ceffa912
MD5 4e4eb2d61ddba623c135de22d6cad90b
BLAKE2b-256 6a6d43367260f3aa9f80aee7f991a88951dd902360e3f878e0cff57e051492e9

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