Skip to main content

Static site generator i actually can use.

Project description

lightweight

PyPI Build Status Test Coverage Supported Python

Python code over configuration static site generator.

Documentation

Examples

Features

  • Clean and easily extensible API
  • Jinja2 templates
  • Markdown rendering
  • Sass/SCSS rendering
  • RSS/Atom feeds
  • Dev server
  • 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('blog-post.html')
    # Use globs to select files.
    return (markdown(path, post_template) for path in paths(source))


site = Site()

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

# Render markdown blog posts.
[site.include(f'posts/{post.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')

# Execute all included content. 
site.render(url='https://example.org')

Dev Server

Lightweight includes a simple static web server with live reload serving at 0.0.0.0:8080 (can be accessed via localhost:8080):

python -m lightweight.server <directory>

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

python -m lightweight.server <directory> --no-live-reload

Otherwise every served html file will be injected with a javascript that polls /id. The script reloads the page when the /id changes. The /id changes every time on any file change at the served directory.

Host and port can be set via:

python -m lightweight.server <directory> --host 0.0.0.0 --port 8080

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.dev26.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

lightweight-1.0.0.dev26-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev26.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.5

File hashes

Hashes for lightweight-1.0.0.dev26.tar.gz
Algorithm Hash digest
SHA256 700e2e5a2e0dbcf741d47ca294d90b26a17b39c585d62ac0f9796db9af852651
MD5 0ed253cb9599be5c4c68af724e6ea29f
BLAKE2b-256 c7f0aff24123ae5b73445f5a21494fdfa5ea3bfc203a190d39d14bd5e78bc4b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev26-py3-none-any.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.5

File hashes

Hashes for lightweight-1.0.0.dev26-py3-none-any.whl
Algorithm Hash digest
SHA256 b0a75ca18f62306ea3acb59b2f966805d7316d46f980f655b7379f0b2fdfe7f8
MD5 d17c51a613ac88efc0603982b2914852
BLAKE2b-256 b4bd1bc9d01980d21c1a8590605575a2aceb7d8a88fd9a95ea6f0ed66ce59033

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