python-cssutils
Port variant py39
Summary Cascading Style Sheets library (3.9)
Package version 2.6.0
Homepage https://github.com/jaraco/cssutils
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants py310
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 28 AUG 2022, 19:34:45 UTC
Port created 21 APR 2020, 22:22:44 UTC
Subpackage Descriptions
single :alt: tests :alt: Code style: Black 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. 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 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
Configuration Switches (platform-specific settings discarded)
PY310 OFF Build using Python 3.10 PY39 ON Build using Python 3.9
Package Dependencies by Type
Build (only) python-pip:single:py39
autoselect-python:single:standard
Build and Runtime python39:single:standard
Download groups
main mirror://PYPIWHL/28/4e/6c6d07b1ab43f7b8b939406b562c652c651a66699b8a01fc6b774cbf69de
Distribution File Information
30c72f3a5c5951a11151640600aae7b3bf10e4c0d5c87f5bc505c2cd4a26e0c2 399674 cssutils-2.6.0-py3-none-any.whl
Ports that require python-cssutils:py39
python-premailer:py39 Turns CSS blocks into style attributes (3.9)