folioqueue 0.1.0__tar.gz → 0.1.1__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.
- {folioqueue-0.1.0 → folioqueue-0.1.1}/CHANGELOG.md +5 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/PKG-INFO +7 -3
- {folioqueue-0.1.0 → folioqueue-0.1.1}/README.md +6 -2
- {folioqueue-0.1.0 → folioqueue-0.1.1}/README.zh-CN.md +1 -1
- {folioqueue-0.1.0 → folioqueue-0.1.1}/pyproject.toml +1 -1
- {folioqueue-0.1.0 → folioqueue-0.1.1}/.gitignore +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/CONTRIBUTING.md +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/LICENSE +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/SECURITY.md +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/docs/design.md +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/docs/evidence/synthetic-batch.json +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/docs/research.md +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/docs/validation.md +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/examples/documents/inventory.csv +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/examples/documents/nested/guide.md +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/examples/documents/unsupported.bin +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/examples/documents/welcome.txt +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/scripts/validate_release.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/__init__.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/__main__.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/cli.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/engine.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/paths.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/report.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/storage.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/src/folioqueue/worker.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/tests/conftest.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/tests/test_documents.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/tests/test_engine.py +0 -0
- {folioqueue-0.1.0 → folioqueue-0.1.1}/tests/test_paths_cli_worker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: folioqueue
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Restartable local document-to-Markdown batches with a checksum ledger and failure isolation
|
|
5
5
|
Project-URL: Homepage, https://github.com/GokouRuri43/folioqueue
|
|
6
6
|
Project-URL: Issues, https://github.com/GokouRuri43/folioqueue/issues
|
|
@@ -64,14 +64,18 @@ This is an independently implemented workflow layer. PDF/DOCX/HTML extraction is
|
|
|
64
64
|
|
|
65
65
|
Python 3.11 or later is required. Use a virtual environment. On Windows, the Python launcher may be `py` instead of `python`.
|
|
66
66
|
|
|
67
|
+
```bash
|
|
68
|
+
python -m pip install "folioqueue[documents]"
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
`pip install folioqueue` installs the dependency-free TXT/Markdown/CSV core. The `documents` extra adds PDF, DOCX and HTML through MarkItDown. To install from source, clone the repository and run `python -m pip install ".[documents]"`:
|
|
72
|
+
|
|
67
73
|
```bash
|
|
68
74
|
git clone https://github.com/GokouRuri43/folioqueue.git
|
|
69
75
|
cd folioqueue
|
|
70
76
|
python -m pip install ".[documents]"
|
|
71
77
|
```
|
|
72
78
|
|
|
73
|
-
`python -m pip install .` installs the dependency-free TXT/Markdown/CSV core. The `documents` extra adds PDF, DOCX and HTML through MarkItDown. A wheel and source archive are also provided in GitHub Releases; the project is **not currently published to PyPI**.
|
|
74
|
-
|
|
75
79
|
## Try it on the included examples
|
|
76
80
|
|
|
77
81
|
Run these commands from the repository directory:
|
|
@@ -34,14 +34,18 @@ This is an independently implemented workflow layer. PDF/DOCX/HTML extraction is
|
|
|
34
34
|
|
|
35
35
|
Python 3.11 or later is required. Use a virtual environment. On Windows, the Python launcher may be `py` instead of `python`.
|
|
36
36
|
|
|
37
|
+
```bash
|
|
38
|
+
python -m pip install "folioqueue[documents]"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
`pip install folioqueue` installs the dependency-free TXT/Markdown/CSV core. The `documents` extra adds PDF, DOCX and HTML through MarkItDown. To install from source, clone the repository and run `python -m pip install ".[documents]"`:
|
|
42
|
+
|
|
37
43
|
```bash
|
|
38
44
|
git clone https://github.com/GokouRuri43/folioqueue.git
|
|
39
45
|
cd folioqueue
|
|
40
46
|
python -m pip install ".[documents]"
|
|
41
47
|
```
|
|
42
48
|
|
|
43
|
-
`python -m pip install .` installs the dependency-free TXT/Markdown/CSV core. The `documents` extra adds PDF, DOCX and HTML through MarkItDown. A wheel and source archive are also provided in GitHub Releases; the project is **not currently published to PyPI**.
|
|
44
|
-
|
|
45
49
|
## Try it on the included examples
|
|
46
50
|
|
|
47
51
|
Run these commands from the repository directory:
|
|
@@ -29,7 +29,7 @@ folioqueue convert examples/documents -o demo-output
|
|
|
29
29
|
|
|
30
30
|
第一次转换三个示例文件并忽略一个不支持的文件;第二次应跳过三个未变化文件。打开 `demo-output/report.html` 查看结果。
|
|
31
31
|
|
|
32
|
-
仅需要 TXT、Markdown、CSV 时,执行 `
|
|
32
|
+
仅需要 TXT、Markdown、CSV 时,执行 `pip install folioqueue`,核心没有第三方运行依赖。也可以从源码安装,GitHub Releases 同时提供 wheel 和源码包。
|
|
33
33
|
|
|
34
34
|
转换自己的文件夹:
|
|
35
35
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "folioqueue"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Restartable local document-to-Markdown batches with a checksum ledger and failure isolation"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
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
|