├── .gitignore ├── LICENSE ├── README.md ├── README.zh.md ├── makefile ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── test_cli.py ├── test_main.py ├── testdata └── merged.xlsx └── xlparser ├── __init__.py ├── cli.py └── xlparser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/README.zh.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/makefile -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/test_cli.py -------------------------------------------------------------------------------- /test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/test_main.py -------------------------------------------------------------------------------- /testdata/merged.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/testdata/merged.xlsx -------------------------------------------------------------------------------- /xlparser/__init__.py: -------------------------------------------------------------------------------- 1 | from .xlparser import * -------------------------------------------------------------------------------- /xlparser/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/xlparser/cli.py -------------------------------------------------------------------------------- /xlparser/xlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahuigo/xlparser/HEAD/xlparser/xlparser.py --------------------------------------------------------------------------------