├── .flake8 ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── parserator ├── __init__.py ├── data_prep_utils.py ├── main.py ├── manual_labeling.py ├── parser_template.py ├── spotcheck.py └── training.py ├── pyproject.toml └── tests └── test_xml.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=232 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/docs/make.bat -------------------------------------------------------------------------------- /parserator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parserator/data_prep_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/parserator/data_prep_utils.py -------------------------------------------------------------------------------- /parserator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/parserator/main.py -------------------------------------------------------------------------------- /parserator/manual_labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/parserator/manual_labeling.py -------------------------------------------------------------------------------- /parserator/parser_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/parserator/parser_template.py -------------------------------------------------------------------------------- /parserator/spotcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/parserator/spotcheck.py -------------------------------------------------------------------------------- /parserator/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/parserator/training.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datamade/parserator/HEAD/tests/test_xml.py --------------------------------------------------------------------------------