This package provides a simple Python extension module sass
which is
binding LibSass (written in C/C++ by Hampton Catlin and Aaron Leung).
It's very straightforward and there isn't any headache related to Python
distribution/deployment. That means you can add just libsass
into
your setup.py
's install_requires
list or requirements.txt
file.
No need for Ruby nor Node.js.
@import
callbacks.setuptools
/distutils
integration.
You can build all Sass/SCSS files using
setup.py build_sass
command.It's available on PyPI, so you can install it using pip
(or
easy_install
):
$ pip install libsass
Note
libsass requires some features introduced by the recent C++ standard. You need a C++ compiler that support those features. See also libsass project's README file.
>>> import sass
>>> print sass.compile(string='a { b { color: blue; } }')
a b {
color: blue; }
There's the user guide manual and the full API reference for libsass
:
https://sass.github.io/libsass-python/
You can build the docs by yourself:
$ cd docs/
$ make html
The built docs will go to docs/_build/html/
directory.
Hong Minhee wrote this Python binding of LibSass.
Hampton Catlin and Aaron Leung wrote LibSass, which is portable C/C++ implementation of Sass.
Hampton Catlin originally designed Sass language and wrote the first reference implementation of it in Ruby.
The above three are all distributed under MIT license.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。