Skip to main content

library to compare HTML while ignoring non-functional differences

Project description

htmlcompare

A Python library to ensure two HTML documents are "equal". Currently the functionality is very limited but the idea is that the library should ignore differences automatically when these are not relevant for HTML semantics (e.g. <img style=""> should be the same as <img>.

Usage

import htmlcompare

diff = htmlcompare.compare('<div>', '<p>')
is_same = bool(diff)

To ease testing the library provides some helpers

from htmlcompare import assert_different_html, assert_same_html

assert_different_html('<br>', '<p>')
assert_same_html('<div />', '<div></div>')

Limitations / Plans

CSS is currently not validated. Later I hope to add CSS parsing using a real CSS parser like tinycss2 but right now the only support for CSS is that contents of <style> tags is completely ignored and that trailing ;s in style attributes are stripped.

No validation of conditional comments. Not sure which library I can use here but at some point I'll likely need this as well.

JavaScript - for obvious reasons it will be impossible to implement perfect JS comparison but it might be possible to run some kind of "beautifier" to take care of insignificant stylistic changes. However I don't need this feature so this is unlikely to get implemented (unless contributed by someone else).

Custom hooks could help adapting the comparison to your specific needs. However I don't know which API would be best so this will wait until there are real-world use cases.

Better API: The current API is very minimal and implements just what I needed right now. I hope to improve the API once I use this project in more complex scenarios.

Other projects

xmldiff is a well established project to compare two XML documents. However it seems as if the code does not contain knowledge about specific HTML semantics (e.g. CSS, empty attributes, insignificant attribute order).

Misc

The code is licensed under the MIT license. It supports Python 2.7 and Python 3.4+.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

HTMLCompare-0.2.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

HTMLCompare-0.2-py2.py3-none-any.whl (7.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file HTMLCompare-0.2.tar.gz.

File metadata

  • Download URL: HTMLCompare-0.2.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for HTMLCompare-0.2.tar.gz
Algorithm Hash digest
SHA256 78717b585c309b3efdc100598373afca1bdd5c774d5b54a434b09533e08420d8
MD5 d6cc32dc0f571384d90955977007b781
BLAKE2b-256 7e6cafd5e1b93c29a19e11e70d74708adb4d700e3f10de134c7541c784f06116

See more details on using hashes here.

File details

Details for the file HTMLCompare-0.2-py2.py3-none-any.whl.

File metadata

  • Download URL: HTMLCompare-0.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for HTMLCompare-0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a8971c3e62306a4d725363238009b2b325c95080d8271bd430fc5f6f058e8a47
MD5 3aaecdb953f51ef754e0c8dc82d0baa0
BLAKE2b-256 97026fde70f4120637022c64877ef883137e7cb15352125f7a7d66f82cac950e

See more details on using hashes here.

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