web-mini -- efficient css and html minifer inspired by css-html-js-minify
Project description
web-mini
web-mini -- efficient css and html minifer inspired by https://pypi.org/project/css-html-js-minify/
examples
note minify_html
does not handle style
tags -- handle css minification
( only very basic stuff that works for html too ) inline urself
singlethreaded
import web_mini
print(
web_mini.html.minify_html(
r"""
<h1>hello world</h1>
<p>this is my very cool
website :)</p>
<pre>
int main(void) {
return 0;
}
</pre>
"""
)
)
print(
web_mini.css.minify_css(
r"""
body {
margin: auto;
padding: 2rem;
max-width: 1100px;
min-height: 100vh;
text-rendering: optimizeSpeed;
}
li {
margin: 0.5em;
}
code {
white-space: pre-wrap !important;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
-webkit-animation-duration: 0.01ms !important;
animation-duration: 0.01ms !important;
-webkit-animation-iteration-count: 1 !important;
animation-iteration-count: 1 !important;
-webkit-transition-duration: 0.01ms !important;
-o-transition-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;;
}
}
"""
)
)
outputs :
<h1>hello world</h1> <p>this is my very cool website :)</p> <pre>
int main(void) {
return 0;
}
</pre>
body{margin:auto;padding:2rem;max-width:1100px;min-height:100vh;text-rendering:optimizeSpeed}li{margin:.5em}code{white-space:pre-wrap !important}@media (prefers-reduced-motion:reduce){*,*::before,*::after{-webkit-animation-duration:.01ms !important;animation-duration:.01ms !important;-webkit-animation-iteration-count:1 !important;animation-iteration-count:1 !important;-webkit-transition-duration:.01ms !important;-o-transition-duration:.01ms !important;transition-duration:.01ms !important;scroll-behavior:auto !important;}}
usage with threading
if ur using web-mini with threading make sure to call compileall()
so caching doesnt get in the way
import web_mini
web_mini.compileall()
# or :
# web_mini.css.css_fns.compileall()
# web_mini.html.html_fns.compileall()
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file web_mini-1.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: web_mini-1.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4facc0f215b1c6e05623caa55047f192d852dd75d0733639ca9f92eedad01286 |
|
MD5 | a19da64551b0cfa17d6e8bd149338159 |
|
BLAKE2b-256 | 3a3db3051eee1e22a9d43a55ef0d933d66e1f3322587e7026a7ddea21868b6ed |