Skip to main content

A minimal, unopinionated file processing engine intended for static website generation.

Project description

PyPI - Python Version PyPI - Python Version PyPI - Python Version

Anchovy

Anchovy is a minimal, unopinionated file processing engine intended for static website generation.

  • Minimal: Anchovy is less than a thousand lines of code and has no mandatory dependencies. Plus, Anchovy can be used for real projects without bringing in dependencies on external executables or languages, even if you want to preprocess CSS.

  • Unopinionated: Anchovy offers a set of components which can be easily configured to your site's exact requirements, without tediously ripping out or overriding entrenched behaviors. Anchovy does not assume you are building a blog or that you wish to design your templates in a specific way. You can even build things that aren't websites! Plus, Anchovy operates on files, so it's simple to integrate tools like imagemagick, dart-sass, or less.js if you need them.

Usage

Anchovy operates on config files written in Python, or even modules directly.

from pathlib import Path

from anchovy.context import InputBuildSettings, Rule
from anchovy.jinja import JinjaMarkdownStep
from anchovy.step import direct_copy_step


# Optional, and can be overridden with CLI arguments.
SETTINGS = InputBuildSettings(
    input_dir=Path('site'),
    output_dir=Path('build'),
)
RULES: list[Rule] = [
    # Ignore dotfiles.
    (r'(.*/)*\..*', None),
    # Render markdown files, then stop processing them.
    (r'.*\.md', JinjaMarkdownStep()),
    (r'.*\.md', None),
    # Copy everything else in static/ directories through.
    (r'.*/static/.*', direct_copy_step),
]

This example is very simple, but is legitimately enough for a small website. If we stored the configuration in config.py and added a raw site like this:

site/
    static/
        styles.css
        toolbar.js
    base.jinja.html
    index.md
    about.md
    contact.md

python -m anchovy config.py would produce output like this:

output/
    static/
        styles.css
        toolbar.js
    index.html
    about.html
    contact.html

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anchovy-0.0.3.tar.gz (14.3 kB view hashes)

Uploaded Source

Built Distribution

anchovy-0.0.3-py3-none-any.whl (14.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page