pynliner¶
Pynliner : Convert CSS to inline styles
Python CSS-to-inline-styles conversion tool for HTML using BeautifulSoup and cssutils
Copyright (c) 2011-2016 Tanner Netterville
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The generated output of this software shall not be used in a mass marketing service.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project pages¶
- PyPI package page: http://pypi.python.org/pypi/pynliner
- github project page: http://github.com/rennat/pynliner
- this documentation: http://pythonhosted.org/pynliner
installation¶
$ pip install pynliner
example¶
>>> html = u'<style>h1 { color:#ffcc00; }</style><h1>Hello World!</h1>'
>>> output = pynliner.fromString(html)
u'<h1 style="color: #fc0">Hello World!</h1>'
functions¶
-
pynliner.
fromURL
(url, **kwargs)¶ Shortcut Pynliner constructor. Equivalent to:
>>> Pynliner().from_url(someURL).run()
Returns processed HTML string.
-
pynliner.
fromString
(string, **kwargs)¶ Shortcut Pynliner constructor. Equivalent to:
>>> Pynliner().from_string(someString).run()
Returns processed HTML string.
pynliner.Pynliner¶
-
class
pynliner.
Pynliner
(log=None, allow_conditional_comments=False, preserve_entities=True)¶ Pynliner class
methods¶
-
Pynliner.
from_url
(url)¶ Gets remote HTML page for conversion
Downloads HTML page from url as a string and passes it to the from_string method. Also sets self.root_url and self.relative_url for use in importing <link> elements.
Returns self.
>>> p = Pynliner() >>> p.from_url('http://somewebsite.com/file.html') <Pynliner object at 0x26ac70>
-
Pynliner.
from_string
(string)¶ Generates a Pynliner object from the given HTML string.
Returns self.
>>> p = Pynliner() >>> p.from_string('<style>h1 {color:#ffcc00;}</style><h1>Hi</h1>') <Pynliner object at 0x26ac70>
-
Pynliner.
with_cssString
(css_string)¶ Adds external CSS to the Pynliner object. Can be “chained”.
Returns self.
>>> html = "<h1>Hello World!</h1>" >>> css = "h1 { color:#ffcc00; }" >>> p = Pynliner() >>> p.from_string(html).with_cssString(css) <pynliner.Pynliner object at 0x2ca810>
-
Pynliner.
run
()¶ Applies each step of the process if they have not already been performed.
Returns Unicode output with applied styles.
>>> html = "<style>h1 { color:#ffcc00; }</style><h1>Hello World!</h1>" >>> Pynliner().from_string(html).run() u'<h1 style="color: #fc0">Hello World!</h1>'
changelog¶
0.8.0¶
- fix multiclass selector bug ( https://github.com/rennat/pynliner/pull/52 )
- fix python 3 compatability ( https://github.com/rennat/pynliner/pull/55 )
0.7.2¶
- fix duplicate element bug ( https://github.com/rennat/pynliner/issues/49 ) ( via https://github.com/rennat/pynliner/pull/51 )
- preserve HTML entities through BeautifulSoup ( https://github.com/rennat/pynliner/issues/43 )
0.7.1¶
- attribute selector bug ( https://github.com/rennat/pynliner/issues/42 )
0.7.0¶
- adopted better versioning practices (hence the 2 minor versions in one evening)
- fixed selector specificity sorting bug (via https://github.com/patricksurry/pynliner/commit/21cbadda157077f698a5f12891f6f021b584097f )
- fixed descendant operator logic (problem found by rogerhu https://github.com/rogerhu/pynliner/commit/07fb71ed3edffb9bdbc867577bc60f1ab1e2efd9 )
0.6.0¶
- Python 3 support! (via agronholm https://github.com/rennat/pynliner/pull/41/commits/3ff3a7f3aae6e70d0a1e8919e27bf760f4ca79ae )
- Now uses Beautiful Soup 4 (thanks to agronholm)
0.5.0¶
- started keeping track of changes here.
- improve CSS capabilities
- abandon old versions of BeautifulSoup (pre 3.2.1) in favor of full unicode support