Code over configuration static site generator.
Project description
lightweight: a static site generator
Code over configuration.
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 --url https://example.org example
It accepts multiple optional arguments:
lw init -h
usage: lw init [-h] --url URL [--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
--url URL the url of the generated site
--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
:
lw serve website:dev
Here website
is a Python module
Host and port can be changed via:
lw serve website: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 website:dev --source ~/Projects/example
The live reload can be disabled with --no-live-reload
flag:
lw serve website:dev --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
Built Distribution
File details
Details for the file lightweight-1.0.0.dev50.tar.gz
.
File metadata
- Download URL: lightweight-1.0.0.dev50.tar.gz
- Upload date:
- Size: 192.8 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4930d7148354d389cccdb3760b4ca812767244bb81ddf67c6de4586f685dfd67 |
|
MD5 | feb6049625280d1451a00db44d17733c |
|
BLAKE2b-256 | c59c24758bb43edb374d9e62f6a95286a8576de4a21d11868b29a462e7d9534e |
File details
Details for the file lightweight-1.0.0.dev50-py3-none-any.whl
.
File metadata
- Download URL: lightweight-1.0.0.dev50-py3-none-any.whl
- Upload date:
- Size: 220.2 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8402dc98b8dd80385337bff2ef9535063461c308e2058d073436a8c6f45b852 |
|
MD5 | d62227b7154c2c047717ab96f9ab063a |
|
BLAKE2b-256 | 2caabc142c988381eaad9bcf5cf139887d8ab58d0981cebfa0fb56ccbd402f5c |