├── .github ├── actions │ └── install │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── conftest.py ├── contrib └── unstructured │ ├── partition.py │ └── xlsx.py ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── eparse ├── __init__.py ├── cli.py ├── core.py ├── interfaces.py └── migrations.py ├── pyproject.toml ├── setup.cfg ├── tests ├── __init__.py ├── eparse_unit_test_data.xlsx ├── test.db ├── test_cli.py ├── test_core.py └── test_interfaces.py └── tox.ini /.github/actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/.github/actions/install/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/conftest.py -------------------------------------------------------------------------------- /contrib/unstructured/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/contrib/unstructured/partition.py -------------------------------------------------------------------------------- /contrib/unstructured/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/contrib/unstructured/xlsx.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /eparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/eparse/__init__.py -------------------------------------------------------------------------------- /eparse/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/eparse/cli.py -------------------------------------------------------------------------------- /eparse/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/eparse/core.py -------------------------------------------------------------------------------- /eparse/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/eparse/interfaces.py -------------------------------------------------------------------------------- /eparse/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/eparse/migrations.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for eparse.""" 2 | -------------------------------------------------------------------------------- /tests/eparse_unit_test_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/tests/eparse_unit_test_data.xlsx -------------------------------------------------------------------------------- /tests/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/tests/test.db -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/tests/test_interfaces.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPappalardo/eparse/HEAD/tox.ini --------------------------------------------------------------------------------