cssutils


Namecssutils JSON
Version 2.10.2 PyPI version JSON
download
home_pagehttps://github.com/jaraco/cssutils
SummaryA CSS Cascading Style Sheets library for Python
upload_time2024-03-31 16:53:05
maintainerJason R. Coombs
docs_urlhttps://pythonhosted.org/cssutils/
authorChristof Hoeke
requires_python>=3.8
licenseNone
keywords css cascading style sheets cssparser dom level 2 stylesheets dom level 2 css
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. image:: https://img.shields.io/pypi/v/cssutils.svg
   :target: https://pypi.org/project/cssutils

.. image:: https://img.shields.io/pypi/pyversions/cssutils.svg

.. image:: https://github.com/jaraco/cssutils/actions/workflows/main.yml/badge.svg
   :target: https://github.com/jaraco/cssutils/actions?query=workflow%3A%22tests%22
   :alt: tests

.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
    :target: https://github.com/astral-sh/ruff
    :alt: Ruff

.. image:: https://readthedocs.org/projects/cssutils/badge/?version=latest
   :target: https://cssutils.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/badge/skeleton-2024-informational
   :target: https://blog.jaraco.com/skeleton

.. image:: https://tidelift.com/badges/package/pypi/cssutils
   :target: https://tidelift.com/subscription/pkg/pypi-cssutils?utm_source=pypi-cssutils&utm_medium=readme


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 <http://www.w3.org/TR/CSS2/>`__
    General CSS rules and properties are defined here
`CSS3 Module: Syntax <http://www.w3.org/TR/css3-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 <http://www.w3.org/TR/css3-fonts/>`__
    Added changes and additional stuff (since cssutils v0.9.6)
`MediaQueries <http://www.w3.org/TR/css3-mediaqueries/>`__
    MediaQueries are part of ``stylesheets.MediaList`` since v0.9.4, used in @import and @media rules.
`Namespaces <http://dev.w3.org/csswg/css3-namespace/>`__
    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 <http://www.w3.org/TR/css3-page/>`__
    Most properties of this spec are implemented including MarginRules
`Selectors <http://www.w3.org/TR/css3-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 <http://www.w3.org/TR/css3-background/>`__, `CSS3 Basic User Interface Module <http://www.w3.org/TR/css3-ui/#resize>`__, `CSS Text Level 3 <http://www.w3.org/TR/css3-text/>`__
    Some validation for properties included, mainly  `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow`
`Variables <http://disruptive-innovations.com/zoo/cssvariables/>`__ / `CSS Custom Properties <http://dev.w3.org/csswg/css-variables/>`__
    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 <http://www.w3.org/TR/DOM-Level-2-Style/css.html>`__
    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 <http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html>`__
    DOM for package stylesheets
`CSSOM <http://dev.w3.org/csswg/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) <http://www.w3.org/TR/css3-syntax/>`_ 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 &auml; */
         @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 <https://github.com/jaraco/cssutils/issues>`_.


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 <https://tidelift.com/subscription/pkg/pypi-cssutils?utm_source=pypi-cssutils&utm_medium=referral&utm_campaign=github>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jaraco/cssutils",
    "name": "cssutils",
    "maintainer": "Jason R. Coombs",
    "docs_url": "https://pythonhosted.org/cssutils/",
    "requires_python": ">=3.8",
    "maintainer_email": "jaraco@jaraco.com",
    "keywords": "CSS, Cascading Style Sheets, CSSParser, DOM Level 2 Stylesheets, DOM Level 2 CSS",
    "author": "Christof Hoeke",
    "author_email": "c@cthedot.de",
    "download_url": "https://files.pythonhosted.org/packages/d1/25/91223a246181204edddbae96c0ab661d7ca6dc1e7805c8ac5302a5e16d81/cssutils-2.10.2.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/v/cssutils.svg\n   :target: https://pypi.org/project/cssutils\n\n.. image:: https://img.shields.io/pypi/pyversions/cssutils.svg\n\n.. image:: https://github.com/jaraco/cssutils/actions/workflows/main.yml/badge.svg\n   :target: https://github.com/jaraco/cssutils/actions?query=workflow%3A%22tests%22\n   :alt: tests\n\n.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json\n    :target: https://github.com/astral-sh/ruff\n    :alt: Ruff\n\n.. image:: https://readthedocs.org/projects/cssutils/badge/?version=latest\n   :target: https://cssutils.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://img.shields.io/badge/skeleton-2024-informational\n   :target: https://blog.jaraco.com/skeleton\n\n.. image:: https://tidelift.com/badges/package/pypi/cssutils\n   :target: https://tidelift.com/subscription/pkg/pypi-cssutils?utm_source=pypi-cssutils&utm_medium=readme\n\n\nOverview\n========\nA Python package to parse and build CSS Cascading Style Sheets. DOM only, not any rendering facilities!\n\nBased upon and partly implementing the following specifications :\n\n`CSS 2.1rev1 <http://www.w3.org/TR/CSS2/>`__\n    General CSS rules and properties are defined here\n`CSS3 Module: Syntax <http://www.w3.org/TR/css3-syntax/>`__\n    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\n`CSS Fonts Module Level 3 <http://www.w3.org/TR/css3-fonts/>`__\n    Added changes and additional stuff (since cssutils v0.9.6)\n`MediaQueries <http://www.w3.org/TR/css3-mediaqueries/>`__\n    MediaQueries are part of ``stylesheets.MediaList`` since v0.9.4, used in @import and @media rules.\n`Namespaces <http://dev.w3.org/csswg/css3-namespace/>`__\n    Added in v0.9.1, updated to definition in CSSOM in v0.9.4, updated in 0.9.5 for dev version\n`CSS3 Module: Pages Media <http://www.w3.org/TR/css3-page/>`__\n    Most properties of this spec are implemented including MarginRules\n`Selectors <http://www.w3.org/TR/css3-selectors/>`__\n    The selector syntax defined here (and not in CSS 2.1) should be parsable with cssutils (*should* mind though ;) )\n`CSS Backgrounds and Borders Module Level 3 <http://www.w3.org/TR/css3-background/>`__, `CSS3 Basic User Interface Module <http://www.w3.org/TR/css3-ui/#resize>`__, `CSS Text Level 3 <http://www.w3.org/TR/css3-text/>`__\n    Some validation for properties included, mainly  `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow`\n`Variables <http://disruptive-innovations.com/zoo/cssvariables/>`__ / `CSS Custom Properties <http://dev.w3.org/csswg/css-variables/>`__\n    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.\n\n`DOM Level 2 Style CSS <http://www.w3.org/TR/DOM-Level-2-Style/css.html>`__\n    DOM for package css. 0.9.8 removes support for CSSValue and related API, see PropertyValue and Value API for now\n`DOM Level 2 Style Stylesheets <http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html>`__\n    DOM for package stylesheets\n`CSSOM <http://dev.w3.org/csswg/cssom/>`__\n    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...\n\nThe cssutils tokenizer is a customized implementation of `CSS3 Module: Syntax (W3C Working Draft 13 August 2003) <http://www.w3.org/TR/css3-syntax/>`_ 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.\n\nI 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.\n\n\nCompatibility\n=============\n\ncssutils is developed on modern Python versions. Check the package metadata\nfor compatibilty.\n\nBeware, cssutils is known to be thread unsafe.\n\n\nExample\n=======\n::\n\n    import cssutils\n\n    css = '''/* a comment with umlaut &auml; */\n         @namespace html \"http://www.w3.org/1999/xhtml\";\n         @variables { BG: #fff }\n         html|a { color:red; background: var(BG) }'''\n    sheet = cssutils.parseString(css)\n\n    for rule in sheet:\n        if rule.type == rule.STYLE_RULE:\n            # find property\n            for property in rule.style:\n                if property.name == 'color':\n                    property.value = 'green'\n                    property.priority = 'IMPORTANT'\n                    break\n            # or simply:\n            rule.style['margin'] = '01.0eM' # or: ('1em', 'important')\n\n    sheet.encoding = 'ascii'\n    sheet.namespaces['xhtml'] = 'http://www.w3.org/1999/xhtml'\n    sheet.namespaces['atom'] = 'http://www.w3.org/2005/Atom'\n    sheet.add('atom|title {color: #000000 !important}')\n    sheet.add('@import \"sheets/import.css\";')\n\n    # cssutils.ser.prefs.resolveVariables == True since 0.9.7b2\n    print sheet.cssText\n\nresults in::\n\n\t@charset \"ascii\";\n\t@import \"sheets/import.css\";\n\t/* a comment with umlaut \\E4  */\n\t@namespace xhtml \"http://www.w3.org/1999/xhtml\";\n\t@namespace atom \"http://www.w3.org/2005/Atom\";\n\txhtml|a {\n\t    color: green !important;\n\t    background: #fff;\n\t    margin: 1em\n\t    }\n\tatom|title {\n\t    color: #000 !important\n\t    }\n\n\nKind Request\n============\n\ncssutils 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 <https://github.com/jaraco/cssutils/issues>`_.\n\n\nThanks\n======\n\nSpecial thanks to Christof H\u00f6ke for seminal creation of the library.\n\nThanks 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.\n\n\nFor Enterprise\n==============\n\nAvailable as part of the Tidelift Subscription.\n\nThis 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.\n\n`Learn more <https://tidelift.com/subscription/pkg/pypi-cssutils?utm_source=pypi-cssutils&utm_medium=referral&utm_campaign=github>`_.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A CSS Cascading Style Sheets library for Python",
    "version": "2.10.2",
    "project_urls": {
        "Homepage": "https://github.com/jaraco/cssutils"
    },
    "split_keywords": [
        "css",
        " cascading style sheets",
        " cssparser",
        " dom level 2 stylesheets",
        " dom level 2 css"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "970870f6d03c4e14a85e1efd425689971826b4024c0547b0c063168920e49a37",
                "md5": "2aba2e1c44b3f4e6d5c8c09c06a9c2ac",
                "sha256": "4ad7d2f29270b22cf199f65a6b5e795f2c3130f3b9fb50c3d45e5054ef86e41a"
            },
            "downloads": -1,
            "filename": "cssutils-2.10.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2aba2e1c44b3f4e6d5c8c09c06a9c2ac",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 398072,
            "upload_time": "2024-03-31T16:53:02",
            "upload_time_iso_8601": "2024-03-31T16:53:02.729839Z",
            "url": "https://files.pythonhosted.org/packages/97/08/70f6d03c4e14a85e1efd425689971826b4024c0547b0c063168920e49a37/cssutils-2.10.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d12591223a246181204edddbae96c0ab661d7ca6dc1e7805c8ac5302a5e16d81",
                "md5": "5507e058f0f26f96bb1e393a312b32bf",
                "sha256": "93cf92a350b1c123b17feff042e212f94d960975a3ed145743d84ebe8ccec7ab"
            },
            "downloads": -1,
            "filename": "cssutils-2.10.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5507e058f0f26f96bb1e393a312b32bf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 723055,
            "upload_time": "2024-03-31T16:53:05",
            "upload_time_iso_8601": "2024-03-31T16:53:05.502289Z",
            "url": "https://files.pythonhosted.org/packages/d1/25/91223a246181204edddbae96c0ab661d7ca6dc1e7805c8ac5302a5e16d81/cssutils-2.10.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-31 16:53:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jaraco",
    "github_project": "cssutils",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "cssutils"
}
        
Elapsed time: 0.43507s