Skip to main content

Static site generator i actually can use.

Project description

lightweight

PyPI Build Status Test Coverage Supported Python Documentation

Static site generator i actually can use.

Documentation

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, render, template, rss, atom, sass


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


site = Site(url='https://example.org')

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

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

# Syndicate RSS and Atom feeds.
site.include(f'posts.atom.xml', atom(site['posts']))
site.include(f'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()

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

Uploaded Source

Built Distribution

lightweight-1.0.0.dev21-py3-none-any.whl (17.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev21.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.4

File hashes

Hashes for lightweight-1.0.0.dev21.tar.gz
Algorithm Hash digest
SHA256 f4f94bfccfbafaf3d25f70ba16657476aff4b6fca787f0eaef782d1410fd072b
MD5 2ffe7c297de9f9073262ba7eb3bc73ad
BLAKE2b-256 7371c364c155cc86dbafa906a9be3c3450d3ef4d3787e1327a6520a7729e647a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightweight-1.0.0.dev21-py3-none-any.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.4

File hashes

Hashes for lightweight-1.0.0.dev21-py3-none-any.whl
Algorithm Hash digest
SHA256 76c5eeffa73dabe5efe6d820c705a2cab6d5a1b9433e94e1c406600c55c720f2
MD5 f697bde2f00ebea01868e3fbb7f0b714
BLAKE2b-256 ebf9ac4b5e81bc2247f0149df92373b48bc3634481a2106b6a749df1790e3071

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