• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H26-Mar-2020-1,7911,166

scss/H26-Mar-2020-76,24570,072

.gitignoreH A D26-Mar-2020101 1313

.travis.ymlH A D26-Mar-2020571 3130

DESCRIPTIONH A D26-Mar-202034 11

LICENSEH A D26-Mar-20201.1 KiB2117

MANIFEST.inH A D26-Mar-202060 32

README.rstH A D26-Mar-20201.5 KiB6538

conftest.pyH A D26-Mar-20204.3 KiB147104

setup.pyH A D26-Mar-20204.5 KiB159122

tox.iniH A D26-Mar-2020411 2923

yapps2.pyH A D26-Mar-202037.5 KiB1,184902

README.rst

1pyScss, a Scss compiler for Python
2==================================
3
4|build-status| |coverage|
5
6.. |build-status| image:: https://travis-ci.org/Kronuz/pyScss.svg?branch=master
7    :target: https://travis-ci.org/Kronuz/pyScss
8
9.. |coverage| image:: https://coveralls.io/repos/Kronuz/pyScss/badge.png
10    :target: https://coveralls.io/r/Kronuz/pyScss
11
12pyScss is a compiler for the `Sass`_ language, a superset of CSS3 that adds
13programming capabilities and some other syntactic sugar.
14
15.. _Sass: http://sass-lang.com/
16
17Quickstart
18----------
19
20You need Python 2.6+ or 3.3+.  PyPy is also supported.
21
22Installation::
23
24    pip install pyScss
25
26Usage::
27
28    python -mscss < style.scss
29
30Python API::
31
32    from scss import Compiler
33    Compiler().compile_string("a { color: red + green; }")
34
35
36Features
37--------
38
3995% of Sass 3.2 is supported.  If it's not supported, it's a bug!  Please file
40a ticket.
41
42Most of Compass 0.11 is also built in.
43
44
45Further reading
46---------------
47
48Documentation is in Sphinx.  You can build it yourself by running ``make html``
49from within the ``docs`` directory, or read it on RTD:
50http://pyscss.readthedocs.org/en/latest/
51
52The canonical syntax reference is part of the Ruby Sass documentation:
53http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html
54
55
56Obligatory
57----------
58
59Copyright © 2012 German M. Bravo (Kronuz).  Additional credits in the
60documentation.
61
62Licensed under the `MIT license`_, reproduced in ``LICENSE``.
63
64.. _MIT license: http://www.opensource.org/licenses/mit-license.php
65