Metadata-Version: 2.1
Name: tei_excel_tools
Version: 0.0.2
Home-page: https://github.com/nakamura196/tei_excel_tools
Author: Satoru
Author-email: you@example.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

tei_excel_tools
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

``` sh
pip install tei_excel_tools
```

## How to use

所定のフォーマットを持つExcelファイルを格納した入力パス、およびTEI/XMLファイルの出力パスを指定してください。

フォーマットは以下でご確認ください。

<https://zenn.dev/nakamura196/articles/4a4b3c50745c87>

``` python
from tei_excel_tools.core import Client

input_path = "data/sample.xlsx"
output_path = "data/output.xml"

xml_string = Client.convertExcel(input_path)
Client.save(xml_string, output_path)
```
