SASS for Python: A straightforward binding of libsass for Python.
Project description
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 Python distribution/deployment. That means you can add just libsass into your setup.py’s install_requires list or requirements.txt file.
It currently supports CPython 2.5, 2.6, 2.7, and PyPy 1.9!
Install
It’s available on PyPI, so you can install it using easy_install or pip:
$ easy_install libsass
Example
>>> import sass >>> sass.compile(string='a { b { color: blue; } }') 'a b {\n color: blue; }\n'
Docs
There’s the user guide manual and the full API reference for libsass:
http://dahlia.kr/libsass-python/
You can build the docs by yourself:
$ cd docs/ $ make html
The built docs will go to docs/_build/html/ directory.
Credit
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 softwares are all distributed under MIT license.
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.