Lightweight Document Parser - 순수 Python으로 PDF, DOCX, PPTX, HWPX 파싱
Project description
LitParser
LIT Document Parser - 순수 Python 문서 파서
외부 라이브러리 없이 다양한 문서 포맷 파싱
설치
pip install litparser
사용법
from litparser import parse, to_markdown, to_json
# 자동 포맷 감지
result = parse('document.pdf')
result = parse('report.docx')
result = parse('data.xlsx')
result = parse('문서.hwp')
# 결과 접근
print(result.text)
print(result.tables)
# 변환
md = to_markdown(result)
json_str = to_json(result)
CLI
litparser document.pdf
litparser document.pdf --markdown
litparser document.pdf --json
litparser 문서.hwp --info
지원 포맷
| 포맷 | Modern | Legacy |
|---|---|---|
| Word | .docx ✅ | .doc ✅ |
| PowerPoint | .pptx ✅ | .ppt ✅ |
| Excel | .xlsx ✅ | .xls ✅ |
| 한글 | .hwpx ✅ | .hwp ✅ |
| .pdf ✅ | - | |
| 텍스트 | .txt, .md ✅ | - |
라이선스
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
litparser-0.8.4.tar.gz
(70.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
litparser-0.8.4-py3-none-any.whl
(85.9 kB
view details)
File details
Details for the file litparser-0.8.4.tar.gz.
File metadata
- Download URL: litparser-0.8.4.tar.gz
- Upload date:
- Size: 70.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37612f84b1100cac52984ea9710ee110162dbe8d71e772689b4d229d1a1cc1dc
|
|
| MD5 |
94bfcd525268f6edcd6639c93c27d083
|
|
| BLAKE2b-256 |
f575fce69c88ae5f1cfe7b71f02006a17a3e4de2a2f51ffa95977d7374bf403d
|
File details
Details for the file litparser-0.8.4-py3-none-any.whl.
File metadata
- Download URL: litparser-0.8.4-py3-none-any.whl
- Upload date:
- Size: 85.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
342ccbbb7dfee332b24dae665ee59082aab6f5064e8bd16c30ad0daa3eaf5c55
|
|
| MD5 |
4302baed3ab8856afa45deff2748a96d
|
|
| BLAKE2b-256 |
358fb7618314d75d5271d2c2ce73054fa6e43011578ee29be173c1ef86286a0d
|