cssutils 2.11.1


pip install cssutils

  Latest version

Released: Jun 04, 2024

Project Links

Meta
Author: Christof Hoeke
Maintainer: Jason R. Coombs
Requires Python: >=3.8

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

License
  • OSI Approved :: GNU Library or Lesser General Public License (LGPL)

Programming Language
  • Python :: 3
  • Python :: 3 :: Only

Topic
  • Internet
  • Software Development :: Libraries :: Python Modules
  • Text Processing :: Markup :: HTML
https://img.shields.io/pypi/v/cssutils.svg https://img.shields.io/pypi/pyversions/cssutils.svg tests Ruff https://readthedocs.org/projects/cssutils/badge/?version=latest https://img.shields.io/badge/skeleton-2024-informational https://tidelift.com/badges/package/pypi/cssutils

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 / CSS Custom Properties

Experimental specification of CSS Variables which cssutils implements partly. The vars defined in the newer CSS Custom Properties spec should in main parts be at least parsable with cssutils.

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.

Compatibility

cssutils is developed on modern Python versions. Check the package metadata for compatibilty.

Beware, cssutils is known to be thread unsafe.

Example

import cssutils

css = '''/* 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
    }

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.

Thanks

Special thanks to Christof Höke for seminal creation of the library.

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.

For Enterprise

Available as part of the Tidelift Subscription.

This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.

Learn more.

2.11.1 Jun 04, 2024
2.11.0 May 14, 2024
2.10.3 May 14, 2024
2.10.2 Mar 31, 2024
2.10.1 Mar 30, 2024
2.10.0 Mar 30, 2024
2.9.0 Oct 12, 2023
2.8.0 Oct 12, 2023
2.7.1 Jun 12, 2023
2.7.0 Jun 09, 2023
2.6.0 Aug 22, 2022
2.5.1 Jul 24, 2022
2.5.0 Jul 12, 2022
2.4.2 Jun 08, 2022
2.4.1 Jun 03, 2022
2.4.0 Feb 23, 2022
2.3.1 Feb 23, 2022
2.3.0 May 24, 2021
2.2.0 Mar 11, 2021
2.1.0 Mar 10, 2021
2.0.0 Mar 09, 2021
1.0.2 Mar 04, 2017
1.0.1 Oct 11, 2015
1.0 Dec 15, 2013
0.9.10 Mar 31, 2013
0.9.10b1 Apr 28, 2012
0.9.9 Jan 31, 2012
0.9.8 Dec 10, 2011
0.9.8a3 Jul 27, 2011
0.9.8a2 Jun 11, 2011
0.9.8a1 Dec 12, 2010
0.9.7 Nov 27, 2010
0.9.7b4 Nov 01, 2010
0.9.7b3 Jun 20, 2010
0.9.7b2 Jun 06, 2010
0.9.7b1 May 30, 2010
0.9.7a6 May 23, 2010
0.9.7a4 Mar 23, 2010
0.9.7a3 Mar 14, 2010
0.9.7a2 Dec 30, 2009
0.9.6 Oct 07, 2009
0.9.6b5 Aug 30, 2009
0.9.6b4 Aug 29, 2009
0.9.6b3 Aug 02, 2009
0.9.6b2 Jun 09, 2009
0.9.6b1 Jun 09, 2009
0.9.6a4 May 09, 2009
0.9.6a3 Apr 26, 2009
0.9.6a2 Mar 08, 2009
0.9.6a1 Feb 07, 2009
0.9.6a0 Dec 14, 2008
0.9.5.1 Aug 11, 2008
0.9.5 Jul 30, 2008
0.9.5rc2 Jul 14, 2008
0.9.5rc1 Jul 09, 2008
0.9.5b3 Jun 05, 2008
0.9.5b2 Mar 23, 2008
0.9.5b1 Mar 19, 2008
0.9.5a4 Feb 22, 2008
0.9.5a3 Feb 03, 2008
0.9.5a2 Jan 15, 2008
0.9.5a1 Jan 13, 2008
0.9.4b1 Dec 29, 2007
0.9.4a4 Dec 02, 2007
0.9.4a3 Nov 06, 2007
0.9.4a2 Oct 27, 2007
0.9.3a1 Sep 05, 2007
0.9.2b3 Aug 04, 2007
1.0.win Dec 15, 2013
0.9.9.win Jan 31, 2012
0.9.8a3.win Jul 27, 2011
0.9.8a2.win Jun 11, 2011
0.9.8a1.win Dec 12, 2010
0.9.8.win Dec 10, 2011
0.9.7b4.win Nov 01, 2010
0.9.7b3.win Jun 20, 2010
0.9.7b2.win Jun 06, 2010
0.9.7b1.win May 30, 2010
0.9.7a6.win May 23, 2010
0.9.7a4.win Mar 23, 2010
0.9.7a3.win Mar 14, 2010
0.9.7a2.win Dec 30, 2009
0.9.7.win Nov 27, 2010
0.9.6b5.win32 Aug 30, 2009
0.9.6b4.win32 Aug 29, 2009
0.9.6b3.win32 Aug 02, 2009
0.9.6b1.win32 Jun 09, 2009
0.9.6a4.win32 May 09, 2009
0.9.6a3.win32 Apr 26, 2009
0.9.6a2.win32 Mar 08, 2009
0.9.6a1.win32 Feb 07, 2009
0.9.6.win32 Oct 07, 2009
0.9.5rc2.win32 Jul 14, 2008
0.9.5rc1.win32 Jul 09, 2008
0.9.5b3.win32 Jun 05, 2008
0.9.5b2.win32 Mar 23, 2008
0.9.5b1.win32 Mar 19, 2008
0.9.5.win32 Jul 30, 2008
0.9.5.1.win32 Aug 11, 2008
0.9.10.win Mar 31, 2013

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
more-itertools