statementproof 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.
- {statementproof-0.2.1/statementproof.egg-info → statementproof-0.2.2}/PKG-INFO +6 -3
- {statementproof-0.2.1 → statementproof-0.2.2}/pyproject.toml +7 -4
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/README.md +3 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/__init__.py +1 -1
- {statementproof-0.2.1 → statementproof-0.2.2/statementproof.egg-info}/PKG-INFO +6 -3
- {statementproof-0.2.1 → statementproof-0.2.2}/LICENSE +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/README.md +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/setup.cfg +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/__main__.py +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/cli.py +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/extract.py +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/record.py +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof/validate.py +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof.egg-info/SOURCES.txt +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof.egg-info/dependency_links.txt +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof.egg-info/entry_points.txt +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof.egg-info/requires.txt +0 -0
- {statementproof-0.2.1 → statementproof-0.2.2}/statementproof.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: statementproof
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Convert bank statement PDFs to CSV for QuickBooks or Xero, then prove the conversion is right against the statement's own balances -- or say it isn't.
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/OrbitalKeyAi/statementproof
|
|
7
7
|
Project-URL: Documentation, https://orbitalkeyai.github.io/statementproof/
|
|
8
8
|
Project-URL: Source, https://github.com/OrbitalKeyAi/statementproof
|
|
9
9
|
Project-URL: Issues, https://github.com/OrbitalKeyAi/statementproof/issues
|
|
10
|
-
Keywords: bank-statement,pdf,csv,bookkeeping,accounting,reconciliation,extraction,converter,
|
|
10
|
+
Keywords: bank-statement,bank-statement-converter,pdf-to-csv,pdf-to-excel,statement-to-csv,quickbooks,xero,qbo,ofx,bookkeeping,accounting,reconciliation,audit-trail,extraction,converter,pdf,csv,finance,cli
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
13
13
|
Classifier: Topic :: Office/Business :: Financial :: Accounting
|
|
@@ -52,6 +52,9 @@ And when a row is misread:
|
|
|
52
52
|
534.66 +37.07 should give 571.73, statement shows 497.59 (off by -74.14)
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
**[See the actual output before installing →](https://orbitalkeyai.github.io/statementproof/demo.html)**
|
|
56
|
+
Verified, silently-failing and batch runs, copied verbatim from real runs.
|
|
57
|
+
|
|
55
58
|
## Install
|
|
56
59
|
|
|
57
60
|
```bash
|
|
@@ -4,14 +4,17 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "statementproof"
|
|
7
|
-
version = "0.2.
|
|
8
|
-
description = "
|
|
7
|
+
version = "0.2.2"
|
|
8
|
+
description = "Convert bank statement PDFs to CSV for QuickBooks or Xero, then prove the conversion is right against the statement's own balances -- or say it isn't."
|
|
9
9
|
readme = "statementproof/README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
11
11
|
license = { text = "MIT" }
|
|
12
12
|
keywords = [
|
|
13
|
-
|
|
14
|
-
"
|
|
13
|
+
# The words a bookkeeper types, not the words we would use to describe the design.
|
|
14
|
+
"bank-statement", "bank-statement-converter", "pdf-to-csv", "pdf-to-excel",
|
|
15
|
+
"statement-to-csv", "quickbooks", "xero", "qbo", "ofx", "bookkeeping",
|
|
16
|
+
"accounting", "reconciliation", "audit-trail", "extraction", "converter",
|
|
17
|
+
"pdf", "csv", "finance", "cli",
|
|
15
18
|
]
|
|
16
19
|
classifiers = [
|
|
17
20
|
"Development Status :: 3 - Alpha",
|
|
@@ -27,6 +27,9 @@ And when a row is misread:
|
|
|
27
27
|
534.66 +37.07 should give 571.73, statement shows 497.59 (off by -74.14)
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
+
**[See the actual output before installing →](https://orbitalkeyai.github.io/statementproof/demo.html)**
|
|
31
|
+
Verified, silently-failing and batch runs, copied verbatim from real runs.
|
|
32
|
+
|
|
30
33
|
## Install
|
|
31
34
|
|
|
32
35
|
```bash
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""statementproof - verifiable bank statement extraction."""
|
|
2
|
-
__version__ = "0.2.
|
|
2
|
+
__version__ = "0.2.2"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: statementproof
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Convert bank statement PDFs to CSV for QuickBooks or Xero, then prove the conversion is right against the statement's own balances -- or say it isn't.
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/OrbitalKeyAi/statementproof
|
|
7
7
|
Project-URL: Documentation, https://orbitalkeyai.github.io/statementproof/
|
|
8
8
|
Project-URL: Source, https://github.com/OrbitalKeyAi/statementproof
|
|
9
9
|
Project-URL: Issues, https://github.com/OrbitalKeyAi/statementproof/issues
|
|
10
|
-
Keywords: bank-statement,pdf,csv,bookkeeping,accounting,reconciliation,extraction,converter,
|
|
10
|
+
Keywords: bank-statement,bank-statement-converter,pdf-to-csv,pdf-to-excel,statement-to-csv,quickbooks,xero,qbo,ofx,bookkeeping,accounting,reconciliation,audit-trail,extraction,converter,pdf,csv,finance,cli
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
13
13
|
Classifier: Topic :: Office/Business :: Financial :: Accounting
|
|
@@ -52,6 +52,9 @@ And when a row is misread:
|
|
|
52
52
|
534.66 +37.07 should give 571.73, statement shows 497.59 (off by -74.14)
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
**[See the actual output before installing →](https://orbitalkeyai.github.io/statementproof/demo.html)**
|
|
56
|
+
Verified, silently-failing and batch runs, copied verbatim from real runs.
|
|
57
|
+
|
|
55
58
|
## Install
|
|
56
59
|
|
|
57
60
|
```bash
|
|
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
|