Skip to main content

Python-scss is SCSS compiler for Python. See http://sass-lang.com for more information about scss syntax.

Project description

Python-scss

Warning:

Im not support python-scss anymore. Use pyscss by Kronus.

Python-scss is SCSS compiler for python. Documentation available at pypi or github. This is part of zeta-library.

Features

Python-scss has most of the funcitonality in Sass SCSS 3.2 and more. It supports:

  • Nested rules

  • Keyword arguments

  • Mixins: @mixin, @include

  • Functions: @function, @return

  • Inheritance: @extend

  • Conditions: @if, @else, @if else

  • Loops: @for

  • Variables: $, @variables, @vars

  • Images: image-url, image-width, image-height, ..

  • Embedded inline images: inline-image

  • Colors handling: adjust-color(), scale-color(), opacify()/transparentize(), lighten()/darken(), mix(), …

  • Math functions: sin(), cos(), tan(), round(), ceil(), floor(), pi(), …

  • Options: @option compress:true, sort:false;, @option comments:false;

  • Compass_ helpers: enumerate, type-of, …

  • Sorting declarations: in Zen sorting order

Requirements

  • python >= 2.5

  • pyparsing >= 1.5.5

Installation

python-scss should be installed using pip or setuptools:

pip install scss

easy_install scss

Usage

  1. From python source code:

    from scss import parser
    
    file_path = path_to_file
    src = open( file_path ).read()
    
    # from file
    print parser.load( 'file_path' )
    
    # from string
    print parser.parse( 'src' )
    
    # Create parser object
    p = parser.Stylesheet( options=dict( compress=True ) )
    print p.loads( src )
    p.load( file_path )
    print p
  2. From command line:

    $ scss --help
    Usage: scss [OPTION]... [INFILE] [OUTFILE]
    
    Compile INFILE or standard input, to OUTFILE or standard output.
    
    Options:
    --version             show program's version number and exit
    -h, --help            show this help message and exit
    -c, --cache           Create and use cache file. Only for files.
    -i, --interactive     Run in interactive shell mode.
    -m, --compress        Compress css output.
    -w WATCH, --watch=WATCH
                            Watch files or directories for changes. The location
                            of the generated CSS can be set using a colon:
                            scss -w input.scss:output.css
    -S, --no-sorted       Do not sort declaration.
    -C, --no-comments     Clear css comments.
    -W, --no-warnings     Disable warnings.
  3. In interactive mode:

    scss -i
    
    >>> 25px + 1.5em

Changes

Make sure you`ve read the following document if you are upgrading from previous versions of scss:

http://packages.python.org/scss/changes.html

Examples

  1. Nested Rules

    Example:

    .selector {
        a {
            display: block;
        }
        strong {
            color: blue;
        }
    }

    …produces:

    .selector a {
        display: block}
    
    .selector strong {
        color: blue}
  2. Variables

    Example:

    $main-color: #ce4dd6;
    $style: solid;
    $side: bottom;
    #navbar {
        border-#{$side}: {
        color: $main-color;
        style: $style;
        }
    }

    …produces:

    #navbar {
        border-bottom-color: #ce4dd6;
        border-bottom-style: solid}
  3. Mixins

    Example:

    @mixin rounded($side, $radius: 10px) {
        border-#{$side}-radius: $radius;
        -moz-border-radius-#{$side}: $radius;
        -webkit-border-#{$side}-radius: $radius;
    }
    #navbar li { @include rounded(top); }
    #footer { @include rounded(top, 5px); }
    #sidebar { @include rounded(left, 8px); }

    …produces:

    #navbar li {
            -moz-border-radius-top: 10px;
            -webkit-border-top-radius: 10px;
            border-top-radius: 10px}
    
    #footer {
            -moz-border-radius-top: 5px;
            -webkit-border-top-radius: 5px;
            border-top-radius: 5px}
    
    #sidebar {
            -moz-border-radius-left: 8px;
            -webkit-border-left-radius: 8px;
            border-left-radius: 8px}
  4. Extend (using @extend)

    Example:

    .error {
        border: 1px #f00;
        background-color: #fdd;
    }
    .error.intrusion {
        background-image: url("/image/hacked.png");
    }
    .seriousError {
        @extend .error;
        border-width: 3px;
    }

    …produces:

    .error, .seriousError {
        background-color: #fdd;
        border: 1px #f00}
    
    .error .intrusion, .seriousError .intrusion {
        background-image: url('/image/hacked.png')}
    
    .seriousError {
        border-width: 3px}
  5. Interactive mode

    Example:

    $ python scss.py --interactive
    >>> 25px + 1.5em
    44.5px
    >>> lighten(rgba(130,130,130,.4),10%)
    rgba(155,155,155,0.40)
    >>> .rule { test: red; }
    .rule {
        test: red }
    >>> _

Options

Python-scss has the following options:

  • compress: Compress output css, default is False

  • cache: Precache compile result, default is False

  • comments: Leave css comments, default is True

  • sort: Sort declaration, default is True Declaration sorted in Zen sorting order

  • warn: Enable or disable warnings: unknown mixin, declaration name, extend ruleset, default is True

Option can be defined…

  1. from command line:

    scss -m -S file.scss
  2. from python:

    parser = Stylesheet( options=dict( compress=True ) )
  3. from scss source:

    @option compress: true, sort: false;

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/python-scss/issues

Contributing

Development of python-scss happens at github: https://github.com/klen/python-scss

  • klen (Kirill Klenov)

License

Licensed under a GNU lesser general public license.

Note

Your feedback are welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scss-0.8.73.tar.gz (55.6 kB view details)

Uploaded Source

Built Distribution

scss-0.8.73-py2.py3-none-any.whl (38.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file scss-0.8.73.tar.gz.

File metadata

  • Download URL: scss-0.8.73.tar.gz
  • Upload date:
  • Size: 55.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for scss-0.8.73.tar.gz
Algorithm Hash digest
SHA256 f9ea78b523a3e8787fa038837fb70999f78074eedb3bdeace34885d67a6d5418
MD5 4c5f0b028306ed2d76e42c9a9c133287
BLAKE2b-256 95fe12148c3f78db01c9622cf4b4f152537a00d0af8c056c1ef907046e7cfc19

See more details on using hashes here.

File details

Details for the file scss-0.8.73-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for scss-0.8.73-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 116e0baba328ccb9fd5bfe1a23e678fc294ca049f0f8188295487f1dbe416476
MD5 3a5dcb79e90ae6458024792d56018472
BLAKE2b-256 8c75f93bba56c6e376f725e21aa3c7d9a7ce5ed7d71db7fc69c2e0014dc16fe0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page