web-mini/web_mini/__init__.py
Ari Archer 087ebffb7c
Update information.
Signed-off-by: Ari Archer <ari@ari.lt>
2025-01-02 11:39:12 +02:00

18 lines
434 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""web-mini -- efficient css and html minifer inspired by \
https://pypi.org/project/css-html-js-minify/"""
from typing import Tuple
from . import css, html
__version__: str = "1.4.1"
__all__: Tuple[str, ...] = "__version__", "css", "html", "compileall"
def compileall() -> None:
"""compile all css and html regex"""
css.css_fns.compileall()
html.html_fns.compileall()