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

  • Clean and easily extensible API
  • Jinja2 templates
  • Markdown rendering
  • Sass/SCSS rendering
  • RSS/Atom feeds (basic implementation with ability to pass only plaintext to feeds)
  • Dev server
  • Site nesting
  • CLI

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('posts/_template.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('pages/index.html'))

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

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

    # Render SASS to CSS.
    site.include('css/style.css', sass('styles/style.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()

Dev Server

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

lw serve site:dev

Here site is a Python module

Host and port can be set via:

lw serve site: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 site:dev --source ~/Projects/example

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

lw serve site: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.dev36.tar.gz (21.7 kB view details)

Uploaded Source

Built Distribution

lightweight-1.0.0.dev36-py3-none-any.whl (27.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev36.tar.gz
  • Upload date:
  • Size: 21.7 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.41.1 CPython/3.7.5

File hashes

Hashes for lightweight-1.0.0.dev36.tar.gz
Algorithm Hash digest
SHA256 e51e8b25bb8aa2cf1ed4f840b1b66ed1ed2b1f8bcfbf08b060e3a53fc70fa09f
MD5 a76850d517ff4df6dcb67f3278c95d70
BLAKE2b-256 40933bad2c844f1c099e99bb8e9940c947bde4366092af8b0de23e2bcb8f60d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev36-py3-none-any.whl
  • Upload date:
  • Size: 27.9 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.41.1 CPython/3.7.5

File hashes

Hashes for lightweight-1.0.0.dev36-py3-none-any.whl
Algorithm Hash digest
SHA256 cbdaa79a6f3c5a6340d4925b875cda7a14b3668c97c85bc72d3b271979f1acc9
MD5 141a8aa19ea23fa5da6e5519043e7da7
BLAKE2b-256 11bbc37c706b84c78b75494f5d9abab65cd54c2de2e4132b61142b9052cc5759

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