├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── pha ├── __init__.py ├── formatters.py ├── matchers.py ├── spec.py └── tests.py ├── requirements.txt ├── setup.cfg ├── setup.py └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/README.md -------------------------------------------------------------------------------- /pha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/pha/__init__.py -------------------------------------------------------------------------------- /pha/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/pha/formatters.py -------------------------------------------------------------------------------- /pha/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/pha/matchers.py -------------------------------------------------------------------------------- /pha/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/pha/spec.py -------------------------------------------------------------------------------- /pha/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/pha/tests.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | pytest 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/setup.py -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjohncox/python-html-assert/HEAD/todo.txt --------------------------------------------------------------------------------