rc-docparser 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/CHANGELOG.md +5 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/PKG-INFO +4 -2
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/README.md +3 -1
- rc_docparser-0.2.2/src/docparser/_version.py +1 -0
- rc_docparser-0.2.1/src/docparser/_version.py +0 -1
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/.gitignore +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/LICENSE +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/pyproject.toml +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/__init__.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/cli.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/common.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/csvtab.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/docx.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/epub.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/html.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/image.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/localvlm.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/ocr.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/orchestrator.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/pdf.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/pdf_backends.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/pptx.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/py.typed +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/text.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/src/docparser/xlsx.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/conftest.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_cli.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_common.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_csv.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_docx.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_epub.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_html.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_image.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_localvlm.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_orchestrator.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_pdf.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_pdf_backends.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_pptx.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_text.py +0 -0
- {rc_docparser-0.2.1 → rc_docparser-0.2.2}/tests/test_xlsx.py +0 -0
|
@@ -6,6 +6,11 @@ follows [Semantic Versioning](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.2] - 2026-06-19
|
|
10
|
+
### Changed
|
|
11
|
+
- README/PyPI page now leads with the `rc-docparser` distribution name and
|
|
12
|
+
clarifies the `docparser` import name (docs-only release).
|
|
13
|
+
|
|
9
14
|
## [0.2.1] - 2026-06-19
|
|
10
15
|
### Changed
|
|
11
16
|
- Packaging aligned with Research Commons conventions: PEP 639 SPDX
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rc-docparser
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Convert research literature (.docx, .xlsx, .pdf, .html, .pptx, .epub, .txt, .md, .csv) into structured Markdown + JSON corpora, with optional VLM image semantic captioning.
|
|
5
5
|
Project-URL: Homepage, https://github.com/Research-Commons/docparser
|
|
6
6
|
Project-URL: Repository, https://github.com/Research-Commons/docparser
|
|
@@ -80,7 +80,9 @@ Provides-Extra: vlm
|
|
|
80
80
|
Requires-Dist: requests>=2.32.3; extra == 'vlm'
|
|
81
81
|
Description-Content-Type: text/markdown
|
|
82
82
|
|
|
83
|
-
# docparser
|
|
83
|
+
# rc-docparser
|
|
84
|
+
|
|
85
|
+
_Published on PyPI as **`rc-docparser`**; import it as `docparser` (`import docparser`)._
|
|
84
86
|
|
|
85
87
|
Convert research literature (`.docx`, `.xlsx`, `.pdf`, `.html`, `.pptx`,
|
|
86
88
|
`.epub`, `.txt`, `.md`, `.csv`) into a clean, reproducible **Markdown + JSON**
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
# docparser
|
|
1
|
+
# rc-docparser
|
|
2
|
+
|
|
3
|
+
_Published on PyPI as **`rc-docparser`**; import it as `docparser` (`import docparser`)._
|
|
2
4
|
|
|
3
5
|
Convert research literature (`.docx`, `.xlsx`, `.pdf`, `.html`, `.pptx`,
|
|
4
6
|
`.epub`, `.txt`, `.md`, `.csv`) into a clean, reproducible **Markdown + JSON**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.2"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|