Skip to main content

A CSS Cascading Style Sheets library for Python

Project description

Overview

A Python package to parse and build CSS Cascading Style Sheets. DOM only, not any rendering facilities!

Based upon and partly implementing the following specifications :

CSS 2.1rev1

General CSS rules and properties are defined here

CSS3 Module: Syntax

Used in parts since cssutils 0.9.4. cssutils tries to use the features from CSS 2.1 and CSS 3 with preference to CSS3 but as this is not final yet some parts are from CSS 2.1

CSS Fonts Module Level 3

Added changes and additional stuff (since cssutils v0.9.6)

MediaQueries

MediaQueries are part of stylesheets.MediaList since v0.9.4, used in @import and @media rules.

Namespaces

Added in v0.9.1, updated to definition in CSSOM in v0.9.4, updated in 0.9.5 for dev version

CSS3 Module: Pages Media

Most properties of this spec are implemented including MarginRules

Selectors

The selector syntax defined here (and not in CSS 2.1) should be parsable with cssutils (should mind though ;) )

CSS Backgrounds and Borders Module Level 3, CSS3 Basic User Interface Module, CSS Text Level 3

Some validation for properties included, mainly cursor, outline, resize, box-shadow, text-shadow

Variables

Experimental specification of CSS Variables which cssutils implements partly. Media specific variables are not supported.

DOM Level 2 Style CSS

DOM for package css. 0.9.8 removes support for CSSValue and related API, see PropertyValue and Value API for now

DOM Level 2 Style Stylesheets

DOM for package stylesheets

CSSOM

A few details (mainly the NamespaceRule DOM) are taken from here. Plan is to move implementation to the stuff defined here which is newer but still no REC so might change anytime…

The cssutils tokenizer is a customized implementation of CSS3 Module: Syntax (W3C Working Draft 13 August 2003) which itself is based on the CSS 2.1 tokenizer. It tries to be as compliant as possible but uses some (helpful) parts of the CSS 2.1 tokenizer.

I guess cssutils is neither CSS 2.1 nor CSS 3 compliant but tries to at least be able to parse both grammars including some more real world cases (some CSS hacks are actually parsed and serialized). Both official grammars are not final nor bugfree but still feasible. cssutils aim is not to be fully compliant to any CSS specification (the specifications seem to be in a constant flow anyway) but cssutils should be able to read and write as many as possible CSS stylesheets “in the wild” while at the same time implement the official APIs which are well documented. Some minor extensions are provided as well.

Please visit http://cthedot.de/cssutils/ or https://bitbucket.org/cthedot/cssutils/ for more details.

There is also a low-traffic cssutils discussion group.

Compatibility

cssutils is developed on standard Python but works under Python 2.x (from 2.5, v2.5.4 tested), 3.x (v3.2.2 tested) and Jython (from 2.5.1). IronPython has not been tested yet but might work? Python 2.4 and older are not supported since cssutils 0.9.8 anymore.

License

Copyright 2005 - 2012 Christof Hoeke

cssutils is published under the LGPL 3 or later

cssutils is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

cssutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with cssutils. If not, see http://www.gnu.org/licenses.

Installation

From 0.9.6 cssutils uses Distribute

After installing Distribute use:

> easy_install cssutils

to install the latest version of cssutils.

Alternatively download the provided source distribution. Expand the file and from a command line install with:

> python setup.py install

To uninstall remove any registrations of cssutils eggs with Distribute and remove the eggs which should be installed at PYTHONDIR/Lib/site-packages/cssutils too.

Example

# -*- coding: utf-8 -*-
import cssutils

css = u'''/* a comment with umlaut ä */
     @namespace html "http://www.w3.org/1999/xhtml";
     @variables { BG: #fff }
     html|a { color:red; background: var(BG) }'''
sheet = cssutils.parseString(css)

for rule in sheet:
    if rule.type == rule.STYLE_RULE:
        # find property
        for property in rule.style:
            if property.name == 'color':
                property.value = 'green'
                property.priority = 'IMPORTANT'
                break
        # or simply:
        rule.style['margin'] = '01.0eM' # or: ('1em', 'important')

sheet.encoding = 'ascii'
sheet.namespaces['xhtml'] = 'http://www.w3.org/1999/xhtml'
sheet.namespaces['atom'] = 'http://www.w3.org/2005/Atom'
sheet.add('atom|title {color: #000000 !important}')
sheet.add('@import "sheets/import.css";')

# cssutils.ser.prefs.resolveVariables == True since 0.9.7b2
print sheet.cssText

results in:

@charset "ascii";
@import "sheets/import.css";
/* a comment with umlaut \E4  */
@namespace xhtml "http://www.w3.org/1999/xhtml";
@namespace atom "http://www.w3.org/2005/Atom";
xhtml|a {
    color: green !important;
    background: #fff;
    margin: 1em
    }
atom|title {
    color: #000 !important
    }

Documentation

The current documenation can be found at http://packages.python.org/cssutils/

Kind Request

cssutils is far from being perfect or even complete. If you find any bugs (especially specification violations) or have problems or suggestions please put them in the Issue Tracker at Bitbucket.

Thanks

Thanks to Simon Sapin, Jason R. Coombs and Walter Doerwald for patches, help and discussion. Thanks to Kevin D. Smith for the value validating module. Thanks also to Cory Dodt, Tim Gerla, James Dobson and Amit Moscovich for helpful suggestions and code patches. Thanks to Fredrik Hedman for help on port of encutils to Python 3.

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.

Source Distribution

cssutils-0.9.9.zip (426.4 kB view details)

Uploaded Source

Built Distributions

cssutils-0.9.9.win-amd64.exe (522.9 kB view details)

Uploaded Source

cssutils-0.9.9-py3.2.egg (648.5 kB view details)

Uploaded Source

cssutils-0.9.9-py2.7.egg (644.3 kB view details)

Uploaded Source

cssutils-0.9.9-py2.6.egg (645.3 kB view details)

Uploaded Source

cssutils-0.9.9-py2.5.egg (639.2 kB view details)

Uploaded Source

File details

Details for the file cssutils-0.9.9.zip.

File metadata

  • Download URL: cssutils-0.9.9.zip
  • Upload date:
  • Size: 426.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cssutils-0.9.9.zip
Algorithm Hash digest
SHA256 f7061a591859c025504c7871ef3b843383a025d570128edf1c63a6ef53753e8d
MD5 5f8ea824cc0e0518b574da20e895be08
BLAKE2b-256 c1181177b6c6abe8c458439129c49cf260deca913c03e9305c9a052baec22755

See more details on using hashes here.

Provenance

File details

Details for the file cssutils-0.9.9.win-amd64.exe.

File metadata

File hashes

Hashes for cssutils-0.9.9.win-amd64.exe
Algorithm Hash digest
SHA256 0d0910cdf31e666d539f65ad5bed922322a9297231f773718e92c923bff58889
MD5 fcf6f2bea7191e99f402040def126a74
BLAKE2b-256 99e167637162c4009c3cca539ea29d7f9b9ae1d8066fa5ed8b3672f2a8f04a97

See more details on using hashes here.

Provenance

File details

Details for the file cssutils-0.9.9-py3.2.egg.

File metadata

  • Download URL: cssutils-0.9.9-py3.2.egg
  • Upload date:
  • Size: 648.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cssutils-0.9.9-py3.2.egg
Algorithm Hash digest
SHA256 27896d9565b7cf46b7ac2b27bbfeaa12a4c5c3bb3b9503fd0fcca881791ea973
MD5 fe4ba803114a0b81196d6300316f9965
BLAKE2b-256 bbe123a0da67a6a26c0185090ff6a1cbb236f07b871078d349edae2bdb02b4d9

See more details on using hashes here.

Provenance

File details

Details for the file cssutils-0.9.9-py2.7.egg.

File metadata

  • Download URL: cssutils-0.9.9-py2.7.egg
  • Upload date:
  • Size: 644.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cssutils-0.9.9-py2.7.egg
Algorithm Hash digest
SHA256 296d4d4566463e9d788b0d78e65876dabfe18b1269c44ad91d92b3cced34b934
MD5 e1b1cf6eb7c90433a9dc45d7d581c076
BLAKE2b-256 5210ba9bfe5dcb1ba8d3eb21c26693953c3096591d10f6a718338341d789f620

See more details on using hashes here.

Provenance

File details

Details for the file cssutils-0.9.9-py2.6.egg.

File metadata

  • Download URL: cssutils-0.9.9-py2.6.egg
  • Upload date:
  • Size: 645.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cssutils-0.9.9-py2.6.egg
Algorithm Hash digest
SHA256 36db5163e77207fae1dba5e3756b222741ffb04028c0ec9ae92c8e96c05baa82
MD5 ad8b9300c698448d3fe9c7613959152e
BLAKE2b-256 7e58682fc564537419913595980c89116cf1a52c426954ead9622ab6eb8d162e

See more details on using hashes here.

Provenance

File details

Details for the file cssutils-0.9.9-py2.5.egg.

File metadata

  • Download URL: cssutils-0.9.9-py2.5.egg
  • Upload date:
  • Size: 639.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cssutils-0.9.9-py2.5.egg
Algorithm Hash digest
SHA256 f6ea4c138ce63e9d987d01af0a295f0495ae02c0c35d57ef6a3d800ec337404b
MD5 636e3c37a46dcb0aa55170b838cc7b64
BLAKE2b-256 4ac4421e7a00a41c73c4b476a99a22a49e59013c0bbe7b7f57be1ae113fc0edd

See more details on using hashes here.

Provenance

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