libsass-python
libsass-python copied to clipboard
A straightforward binding of libsass for Python. Compile Sass/SCSS in Python with no Ruby stack at all!
This closes #391. I've tested the musl wheel on Alpine edge and it works. It might be worth creating a new release if and when this PR is merged. Both...
Hi, first let me thank you for your awesome work. Is it possible to add musllinux wheel builds to pypi ([PEP656](https://www.python.org/dev/peps/pep-0656/))? This would be great for all alpine users since...
In order to better support python 3.6, it would be nice to support Path-like objects instead of only strings on the "path" arguments/attributes. https://docs.python.org/3/library/pathlib.html
The docs is currently hosted on GitHub Pages, but it would be better if it’s moved to RTD.org.
The C implementation of sassc has slightly different parameters. It would be nice to harmonize those for them to be exchangeable. See [here](https://github.com/sass/sassc/blob/master/sassc.c#L149) for the sassC parameters. Note that I...
I think it would simplify the code to expose the following instead of `compile`: ``` def compile_string(s, **kwargs): # ... # and def compile_file(filename, **kwargs): # ... ``` and drop...
https://github.com/jaysonsantos/jinja-assets-compressor
If I try to use builder.Manifest.build_one to build a single .scss file the output .css file get's place 2 iterations of css-path down. e.g manifest = builder.Manifest(sass_path='static/sass', css_path='./static/css') manifest.build_one('.','blog.scss') will...
As sphinx 5 already warns, sphinx.ext.extlinks requires a caption string to contain (exactly) one '%s' if caption is not None, and now sphinx forces this with the following change: https://github.com/sphinx-doc/sphinx/pull/10471...
I'm using importers in my project. Sometimes I need to raise an exception inside them because the path to a scss file is wrong. I want to show a simple...