python library to read xml DOM trees as dicts (with iter and gettattribute behaviour)
Started on 2022-02-01
Start using this project in a virtual environment
$ virtualenv venv
$ source venv/Scripts/activate
$ pip install -r requirements.txt
Initialize to grab dependencies
$ make init # install dependencies
$ make init-dev # includes the previous + adds dependencies for developers
Build Docs
$ make docu
Run Tests
$ make test # to run all tests
$ PYTEST_LOGCONF=debug-logconf.yml python tests/test_demo.py # to run a specific test with specific logging
Check the code-style and syntax (flake8)
$ make check