ofxtools 1.0.0__py3-none-any.whl
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.
- docs/conf.py +76 -0
- ofxtools/Client.py +1003 -0
- ofxtools/Parser.py +262 -0
- ofxtools/Types.py +821 -0
- ofxtools/__init__.py +6 -0
- ofxtools/config/__init__.py +133 -0
- ofxtools/config/fi.cfg +4496 -0
- ofxtools/config/ofxget_example.cfg +64 -0
- ofxtools/header.py +350 -0
- ofxtools/lib.py +82 -0
- ofxtools/models/__init__.py +35 -0
- ofxtools/models/bank/__init__.py +10 -0
- ofxtools/models/bank/interxfer.py +90 -0
- ofxtools/models/bank/mail.py +77 -0
- ofxtools/models/bank/msgsets.py +324 -0
- ofxtools/models/bank/recur.py +185 -0
- ofxtools/models/bank/stmt.py +341 -0
- ofxtools/models/bank/stmtend.py +157 -0
- ofxtools/models/bank/stpchk.py +84 -0
- ofxtools/models/bank/sync.py +167 -0
- ofxtools/models/bank/wire.py +112 -0
- ofxtools/models/bank/xfer.py +118 -0
- ofxtools/models/base.py +586 -0
- ofxtools/models/billpay/__init__.py +7 -0
- ofxtools/models/billpay/common.py +166 -0
- ofxtools/models/billpay/list.py +89 -0
- ofxtools/models/billpay/mail.py +61 -0
- ofxtools/models/billpay/msgsets.py +97 -0
- ofxtools/models/billpay/pmt.py +109 -0
- ofxtools/models/billpay/recur.py +100 -0
- ofxtools/models/billpay/sync.py +61 -0
- ofxtools/models/common.py +81 -0
- ofxtools/models/email.py +170 -0
- ofxtools/models/i18n.py +1227 -0
- ofxtools/models/invest/__init__.py +7 -0
- ofxtools/models/invest/acct.py +61 -0
- ofxtools/models/invest/mail.py +48 -0
- ofxtools/models/invest/msgsets.py +126 -0
- ofxtools/models/invest/openorders.py +162 -0
- ofxtools/models/invest/positions.py +86 -0
- ofxtools/models/invest/securities.py +277 -0
- ofxtools/models/invest/stmt.py +316 -0
- ofxtools/models/invest/transactions.py +370 -0
- ofxtools/models/ofx.py +129 -0
- ofxtools/models/profile.py +169 -0
- ofxtools/models/signon.py +292 -0
- ofxtools/models/signup.py +397 -0
- ofxtools/models/tax1099.py +538 -0
- ofxtools/models/wrapperbases.py +72 -0
- ofxtools/py.typed +0 -0
- ofxtools/scripts/__init__.py +0 -0
- ofxtools/scripts/ofxget.py +1560 -0
- ofxtools/utils.py +406 -0
- ofxtools-1.0.0.dist-info/METADATA +136 -0
- ofxtools-1.0.0.dist-info/RECORD +99 -0
- ofxtools-1.0.0.dist-info/WHEEL +5 -0
- ofxtools-1.0.0.dist-info/entry_points.txt +2 -0
- ofxtools-1.0.0.dist-info/licenses/LICENSE +14 -0
- ofxtools-1.0.0.dist-info/top_level.txt +3 -0
- tests/base.py +543 -0
- tests/test_client.py +875 -0
- tests/test_header.py +634 -0
- tests/test_models_bank_interxfer.py +342 -0
- tests/test_models_bank_mail.py +233 -0
- tests/test_models_bank_recur.py +630 -0
- tests/test_models_bank_stmt.py +856 -0
- tests/test_models_bank_stmtend.py +392 -0
- tests/test_models_bank_stpchk.py +254 -0
- tests/test_models_bank_sync.py +1133 -0
- tests/test_models_bank_wire.py +322 -0
- tests/test_models_bank_xfer.py +461 -0
- tests/test_models_base.py +796 -0
- tests/test_models_billpay_common.py +488 -0
- tests/test_models_billpay_list.py +413 -0
- tests/test_models_billpay_mail.py +186 -0
- tests/test_models_billpay_pmt.py +401 -0
- tests/test_models_billpay_recur.py +229 -0
- tests/test_models_billpay_sync.py +270 -0
- tests/test_models_common.py +169 -0
- tests/test_models_email.py +393 -0
- tests/test_models_i18n.py +52 -0
- tests/test_models_invest.py +1301 -0
- tests/test_models_invest_oo.py +425 -0
- tests/test_models_invest_transactions.py +1227 -0
- tests/test_models_msgsets.py +1604 -0
- tests/test_models_ofx.py +240 -0
- tests/test_models_profile.py +297 -0
- tests/test_models_securities.py +642 -0
- tests/test_models_signon.py +507 -0
- tests/test_models_signup.py +1208 -0
- tests/test_ofxget.py +1376 -0
- tests/test_parser.py +591 -0
- tests/test_spec_bank.py +1154 -0
- tests/test_spec_billpay.py +1671 -0
- tests/test_spec_invest.py +887 -0
- tests/test_spec_signon.py +631 -0
- tests/test_spec_tax1099.py +638 -0
- tests/test_types.py +677 -0
- tests/test_utils.py +96 -0
docs/conf.py
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Configuration file for the Sphinx documentation builder.
|
|
3
|
+
#
|
|
4
|
+
# http://www.sphinx-doc.org/en/master/config
|
|
5
|
+
|
|
6
|
+
from importlib.metadata import metadata
|
|
7
|
+
|
|
8
|
+
_meta = metadata("ofxtools")
|
|
9
|
+
|
|
10
|
+
# -- Project information -----------------------------------------------------
|
|
11
|
+
project = _meta["Name"]
|
|
12
|
+
author = _meta["Author-email"].split("<")[0].strip()
|
|
13
|
+
copyright = f"2010 {author}"
|
|
14
|
+
version = release = _meta["Version"]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# -- General configuration ---------------------------------------------------
|
|
18
|
+
|
|
19
|
+
extensions = []
|
|
20
|
+
templates_path = ["_templates"]
|
|
21
|
+
source_suffix = ".rst"
|
|
22
|
+
master_doc = "index"
|
|
23
|
+
language = None
|
|
24
|
+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|
25
|
+
pygments_style = None
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# -- Options for HTML output -------------------------------------------------
|
|
29
|
+
|
|
30
|
+
html_theme = "sphinxdoc"
|
|
31
|
+
html_static_path = ["_static"]
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# -- Options for HTMLHelp output ---------------------------------------------
|
|
35
|
+
|
|
36
|
+
htmlhelp_basename = "ofxtoolsdoc"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
# -- Options for LaTeX output ------------------------------------------------
|
|
40
|
+
|
|
41
|
+
latex_elements = {}
|
|
42
|
+
latex_documents = [
|
|
43
|
+
(
|
|
44
|
+
master_doc,
|
|
45
|
+
"ofxtools.tex",
|
|
46
|
+
"ofxtools Documentation",
|
|
47
|
+
author,
|
|
48
|
+
"manual",
|
|
49
|
+
)
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
# -- Options for manual page output ------------------------------------------
|
|
54
|
+
|
|
55
|
+
man_pages = [(master_doc, "ofxtools", "ofxtools Documentation", [author], 1)]
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# -- Options for Texinfo output ----------------------------------------------
|
|
59
|
+
|
|
60
|
+
texinfo_documents = [
|
|
61
|
+
(
|
|
62
|
+
master_doc,
|
|
63
|
+
"ofxtools",
|
|
64
|
+
"ofxtools Documentation",
|
|
65
|
+
author,
|
|
66
|
+
"ofxtools",
|
|
67
|
+
"Library for working with Open Financial Exchange (OFX) data",
|
|
68
|
+
"Miscellaneous",
|
|
69
|
+
)
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
# -- Options for Epub output -------------------------------------------------
|
|
74
|
+
|
|
75
|
+
epub_title = project
|
|
76
|
+
epub_exclude_files = ["search.html"]
|