22/07/2019
Compiling SASS/SCSS using Python
Simple way to build CSS from SASS/SCSS sources without using nodeJs.
Performs in two simple steps:
1. Install libsass: $ pip3 install libsass
2. Write compiler script with just two lines of code:
import sass
sass.compile(dirname=('sass', 'css'))
Where 'sass' is directory with sources, 'css' is directory with compiled css
2+ Have fun