├── .dockerignore ├── .gitignore ├── .python-version ├── Dockerfile ├── Dockerfile.skeema ├── Dockerfile.vpn ├── LICENSE ├── Makefile ├── README.md ├── compare_output.py ├── download.py ├── download_all.py ├── open.py ├── parse.py ├── populate_expenses.py ├── populate_meta.py ├── requirements.txt ├── schemas ├── .skeema └── expensifier │ ├── filing_meta.sql │ ├── filings.sql │ ├── fundamentals.sql │ └── prices.sql ├── scripts ├── run_vpn.sh └── run_workers.sh ├── setup.py ├── statement_parser ├── __init__.py ├── expense_collection.py ├── expense_group.py ├── expenses │ ├── __init__.py │ ├── acquisitions.py │ ├── company_other.py │ ├── constants.py │ ├── currency.py │ ├── depreciation_amortization.py │ ├── derivative.py │ ├── discontinued_operations.py │ ├── expense.py │ ├── financing.py │ ├── interest.py │ ├── interest_minority.py │ ├── legal.py │ ├── non_operating_other.py │ ├── non_recurring_other.py │ ├── restructuring.py │ └── write_down.py ├── fact.py ├── filing_urls.py ├── footnote.py ├── labelset.py ├── parsers │ ├── htm.py │ └── xml.py ├── sanitize.py ├── text_analyser.py ├── utils.py ├── validators │ ├── arcs.py │ ├── dimensions.py │ ├── equity_method.py │ ├── gain_loss.py │ ├── interest.py │ ├── other_footnotes.py │ ├── other_hidden.py │ ├── other_income.py │ ├── restructuring.py │ ├── segment.py │ ├── synonyms.py │ └── total.py └── version.py ├── tasks ├── generate_plot.py ├── historical_prices.py └── historical_quarters.py ├── tests ├── hidden.txt ├── parsers │ └── test_xml.py ├── results │ ├── a.json │ ├── aal.json │ ├── aap.json │ ├── aapl.json │ ├── abbv.json │ ├── abc.json │ ├── abt.json │ ├── acn.json │ ├── aig.json │ ├── alk.json │ ├── alv.json │ ├── alx.json │ ├── amgn.json │ ├── apa.json │ ├── avgo.json │ ├── bidu.json │ ├── bio.json │ ├── c.json │ ├── car.json │ ├── cat.json │ ├── ce.json │ ├── chgg.json │ ├── ci.json │ ├── cron.json │ ├── csco.json │ ├── csx.json │ ├── cuz.json │ ├── cvx.json │ ├── dbx.json │ ├── ddd.json │ ├── dfs.json │ ├── dis.json │ ├── ed.json │ ├── entg.json │ ├── f.json │ ├── fb.json │ ├── fdx.json │ ├── flo.json │ ├── fnma.json │ ├── ge.json │ ├── gild.json │ ├── gis.json │ ├── gm.json │ ├── gme.json │ ├── googl.json │ ├── gps.json │ ├── gs.json │ ├── hbi.json │ ├── hpq.json │ ├── hun.json │ ├── icui.json │ ├── ir.json │ ├── jbl.json │ ├── jpm.json │ ├── k.json │ ├── kbh.json │ ├── khc.json │ ├── kmb.json │ ├── ko.json │ ├── kr.json │ ├── lin.json │ ├── lmt.json │ ├── lulu.json │ ├── mar.json │ ├── mdrx.json │ ├── mik.json │ ├── mpc.json │ ├── ms.json │ ├── msft.json │ ├── mstr.json │ ├── nav.json │ ├── nflx.json │ ├── nls.json │ ├── noc.json │ ├── nov.json │ ├── nvda.json │ ├── nvs.json │ ├── ofix.json │ ├── pfe.json │ ├── pg.json │ ├── pgr.json │ ├── plan.json │ ├── qcom.json │ ├── rost.json │ ├── rtx.json │ ├── sna.json │ ├── sne.json │ ├── srga.json │ ├── stba.json │ ├── stx.json │ ├── stz.json │ ├── sxt.json │ ├── tdg.json │ ├── tsla.json │ ├── tx.json │ ├── txt.json │ ├── uber.json │ ├── unf.json │ ├── ups.json │ ├── v.json │ ├── vrtx.json │ ├── vz.json │ ├── w.json │ ├── wba.json │ ├── wlk.json │ ├── wmb.json │ ├── wmt.json │ ├── wor.json │ ├── wu.json │ ├── xom.json │ └── znga.json ├── test_expense_collection.py └── validators │ └── arc_test.py └── worker.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.9 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.skeema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/Dockerfile.skeema -------------------------------------------------------------------------------- /Dockerfile.vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/Dockerfile.vpn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/README.md -------------------------------------------------------------------------------- /compare_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/compare_output.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/download.py -------------------------------------------------------------------------------- /download_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/download_all.py -------------------------------------------------------------------------------- /open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/open.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/parse.py -------------------------------------------------------------------------------- /populate_expenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/populate_expenses.py -------------------------------------------------------------------------------- /populate_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/populate_meta.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/requirements.txt -------------------------------------------------------------------------------- /schemas/.skeema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/schemas/.skeema -------------------------------------------------------------------------------- /schemas/expensifier/filing_meta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/schemas/expensifier/filing_meta.sql -------------------------------------------------------------------------------- /schemas/expensifier/filings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/schemas/expensifier/filings.sql -------------------------------------------------------------------------------- /schemas/expensifier/fundamentals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/schemas/expensifier/fundamentals.sql -------------------------------------------------------------------------------- /schemas/expensifier/prices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/schemas/expensifier/prices.sql -------------------------------------------------------------------------------- /scripts/run_vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/scripts/run_vpn.sh -------------------------------------------------------------------------------- /scripts/run_workers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/scripts/run_workers.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/setup.py -------------------------------------------------------------------------------- /statement_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statement_parser/expense_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expense_collection.py -------------------------------------------------------------------------------- /statement_parser/expense_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expense_group.py -------------------------------------------------------------------------------- /statement_parser/expenses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statement_parser/expenses/acquisitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/acquisitions.py -------------------------------------------------------------------------------- /statement_parser/expenses/company_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/company_other.py -------------------------------------------------------------------------------- /statement_parser/expenses/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/constants.py -------------------------------------------------------------------------------- /statement_parser/expenses/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/currency.py -------------------------------------------------------------------------------- /statement_parser/expenses/depreciation_amortization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/depreciation_amortization.py -------------------------------------------------------------------------------- /statement_parser/expenses/derivative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/derivative.py -------------------------------------------------------------------------------- /statement_parser/expenses/discontinued_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/discontinued_operations.py -------------------------------------------------------------------------------- /statement_parser/expenses/expense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/expense.py -------------------------------------------------------------------------------- /statement_parser/expenses/financing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/financing.py -------------------------------------------------------------------------------- /statement_parser/expenses/interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/interest.py -------------------------------------------------------------------------------- /statement_parser/expenses/interest_minority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/interest_minority.py -------------------------------------------------------------------------------- /statement_parser/expenses/legal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/legal.py -------------------------------------------------------------------------------- /statement_parser/expenses/non_operating_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/non_operating_other.py -------------------------------------------------------------------------------- /statement_parser/expenses/non_recurring_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/non_recurring_other.py -------------------------------------------------------------------------------- /statement_parser/expenses/restructuring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/restructuring.py -------------------------------------------------------------------------------- /statement_parser/expenses/write_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/expenses/write_down.py -------------------------------------------------------------------------------- /statement_parser/fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/fact.py -------------------------------------------------------------------------------- /statement_parser/filing_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/filing_urls.py -------------------------------------------------------------------------------- /statement_parser/footnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/footnote.py -------------------------------------------------------------------------------- /statement_parser/labelset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/labelset.py -------------------------------------------------------------------------------- /statement_parser/parsers/htm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/parsers/htm.py -------------------------------------------------------------------------------- /statement_parser/parsers/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/parsers/xml.py -------------------------------------------------------------------------------- /statement_parser/sanitize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/sanitize.py -------------------------------------------------------------------------------- /statement_parser/text_analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/text_analyser.py -------------------------------------------------------------------------------- /statement_parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/utils.py -------------------------------------------------------------------------------- /statement_parser/validators/arcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/arcs.py -------------------------------------------------------------------------------- /statement_parser/validators/dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/dimensions.py -------------------------------------------------------------------------------- /statement_parser/validators/equity_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/equity_method.py -------------------------------------------------------------------------------- /statement_parser/validators/gain_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/gain_loss.py -------------------------------------------------------------------------------- /statement_parser/validators/interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/interest.py -------------------------------------------------------------------------------- /statement_parser/validators/other_footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/other_footnotes.py -------------------------------------------------------------------------------- /statement_parser/validators/other_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/other_hidden.py -------------------------------------------------------------------------------- /statement_parser/validators/other_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/other_income.py -------------------------------------------------------------------------------- /statement_parser/validators/restructuring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/restructuring.py -------------------------------------------------------------------------------- /statement_parser/validators/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/segment.py -------------------------------------------------------------------------------- /statement_parser/validators/synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/synonyms.py -------------------------------------------------------------------------------- /statement_parser/validators/total.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/statement_parser/validators/total.py -------------------------------------------------------------------------------- /statement_parser/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" -------------------------------------------------------------------------------- /tasks/generate_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tasks/generate_plot.py -------------------------------------------------------------------------------- /tasks/historical_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tasks/historical_prices.py -------------------------------------------------------------------------------- /tasks/historical_quarters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tasks/historical_quarters.py -------------------------------------------------------------------------------- /tests/hidden.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsers/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/parsers/test_xml.py -------------------------------------------------------------------------------- /tests/results/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/a.json -------------------------------------------------------------------------------- /tests/results/aal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/aal.json -------------------------------------------------------------------------------- /tests/results/aap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/aap.json -------------------------------------------------------------------------------- /tests/results/aapl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/aapl.json -------------------------------------------------------------------------------- /tests/results/abbv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/abbv.json -------------------------------------------------------------------------------- /tests/results/abc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/abc.json -------------------------------------------------------------------------------- /tests/results/abt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/abt.json -------------------------------------------------------------------------------- /tests/results/acn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/acn.json -------------------------------------------------------------------------------- /tests/results/aig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/aig.json -------------------------------------------------------------------------------- /tests/results/alk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/alk.json -------------------------------------------------------------------------------- /tests/results/alv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/alv.json -------------------------------------------------------------------------------- /tests/results/alx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/alx.json -------------------------------------------------------------------------------- /tests/results/amgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/amgn.json -------------------------------------------------------------------------------- /tests/results/apa.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/results/avgo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/avgo.json -------------------------------------------------------------------------------- /tests/results/bidu.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/results/bio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/bio.json -------------------------------------------------------------------------------- /tests/results/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/c.json -------------------------------------------------------------------------------- /tests/results/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/car.json -------------------------------------------------------------------------------- /tests/results/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/cat.json -------------------------------------------------------------------------------- /tests/results/ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ce.json -------------------------------------------------------------------------------- /tests/results/chgg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/chgg.json -------------------------------------------------------------------------------- /tests/results/ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ci.json -------------------------------------------------------------------------------- /tests/results/cron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/cron.json -------------------------------------------------------------------------------- /tests/results/csco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/csco.json -------------------------------------------------------------------------------- /tests/results/csx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/csx.json -------------------------------------------------------------------------------- /tests/results/cuz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/cuz.json -------------------------------------------------------------------------------- /tests/results/cvx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/cvx.json -------------------------------------------------------------------------------- /tests/results/dbx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/dbx.json -------------------------------------------------------------------------------- /tests/results/ddd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ddd.json -------------------------------------------------------------------------------- /tests/results/dfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/dfs.json -------------------------------------------------------------------------------- /tests/results/dis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/dis.json -------------------------------------------------------------------------------- /tests/results/ed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ed.json -------------------------------------------------------------------------------- /tests/results/entg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/entg.json -------------------------------------------------------------------------------- /tests/results/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/f.json -------------------------------------------------------------------------------- /tests/results/fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/fb.json -------------------------------------------------------------------------------- /tests/results/fdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/fdx.json -------------------------------------------------------------------------------- /tests/results/flo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/flo.json -------------------------------------------------------------------------------- /tests/results/fnma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/fnma.json -------------------------------------------------------------------------------- /tests/results/ge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ge.json -------------------------------------------------------------------------------- /tests/results/gild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/gild.json -------------------------------------------------------------------------------- /tests/results/gis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/gis.json -------------------------------------------------------------------------------- /tests/results/gm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/gm.json -------------------------------------------------------------------------------- /tests/results/gme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/gme.json -------------------------------------------------------------------------------- /tests/results/googl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/googl.json -------------------------------------------------------------------------------- /tests/results/gps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/gps.json -------------------------------------------------------------------------------- /tests/results/gs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/gs.json -------------------------------------------------------------------------------- /tests/results/hbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/hbi.json -------------------------------------------------------------------------------- /tests/results/hpq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/hpq.json -------------------------------------------------------------------------------- /tests/results/hun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/hun.json -------------------------------------------------------------------------------- /tests/results/icui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/icui.json -------------------------------------------------------------------------------- /tests/results/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ir.json -------------------------------------------------------------------------------- /tests/results/jbl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/jbl.json -------------------------------------------------------------------------------- /tests/results/jpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/jpm.json -------------------------------------------------------------------------------- /tests/results/k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/k.json -------------------------------------------------------------------------------- /tests/results/kbh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/kbh.json -------------------------------------------------------------------------------- /tests/results/khc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/khc.json -------------------------------------------------------------------------------- /tests/results/kmb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/kmb.json -------------------------------------------------------------------------------- /tests/results/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ko.json -------------------------------------------------------------------------------- /tests/results/kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/kr.json -------------------------------------------------------------------------------- /tests/results/lin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/lin.json -------------------------------------------------------------------------------- /tests/results/lmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/lmt.json -------------------------------------------------------------------------------- /tests/results/lulu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/lulu.json -------------------------------------------------------------------------------- /tests/results/mar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/mar.json -------------------------------------------------------------------------------- /tests/results/mdrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/mdrx.json -------------------------------------------------------------------------------- /tests/results/mik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/mik.json -------------------------------------------------------------------------------- /tests/results/mpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/mpc.json -------------------------------------------------------------------------------- /tests/results/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ms.json -------------------------------------------------------------------------------- /tests/results/msft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/msft.json -------------------------------------------------------------------------------- /tests/results/mstr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/mstr.json -------------------------------------------------------------------------------- /tests/results/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/nav.json -------------------------------------------------------------------------------- /tests/results/nflx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/nflx.json -------------------------------------------------------------------------------- /tests/results/nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/nls.json -------------------------------------------------------------------------------- /tests/results/noc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/noc.json -------------------------------------------------------------------------------- /tests/results/nov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/nov.json -------------------------------------------------------------------------------- /tests/results/nvda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/nvda.json -------------------------------------------------------------------------------- /tests/results/nvs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/results/ofix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ofix.json -------------------------------------------------------------------------------- /tests/results/pfe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/pfe.json -------------------------------------------------------------------------------- /tests/results/pg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/pg.json -------------------------------------------------------------------------------- /tests/results/pgr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/pgr.json -------------------------------------------------------------------------------- /tests/results/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/plan.json -------------------------------------------------------------------------------- /tests/results/qcom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/qcom.json -------------------------------------------------------------------------------- /tests/results/rost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/rost.json -------------------------------------------------------------------------------- /tests/results/rtx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/rtx.json -------------------------------------------------------------------------------- /tests/results/sna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/sna.json -------------------------------------------------------------------------------- /tests/results/sne.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/results/srga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/srga.json -------------------------------------------------------------------------------- /tests/results/stba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/stba.json -------------------------------------------------------------------------------- /tests/results/stx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/stx.json -------------------------------------------------------------------------------- /tests/results/stz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/stz.json -------------------------------------------------------------------------------- /tests/results/sxt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/sxt.json -------------------------------------------------------------------------------- /tests/results/tdg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/tdg.json -------------------------------------------------------------------------------- /tests/results/tsla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/tsla.json -------------------------------------------------------------------------------- /tests/results/tx.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/results/txt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/txt.json -------------------------------------------------------------------------------- /tests/results/uber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/uber.json -------------------------------------------------------------------------------- /tests/results/unf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/unf.json -------------------------------------------------------------------------------- /tests/results/ups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/ups.json -------------------------------------------------------------------------------- /tests/results/v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/v.json -------------------------------------------------------------------------------- /tests/results/vrtx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/vrtx.json -------------------------------------------------------------------------------- /tests/results/vz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/vz.json -------------------------------------------------------------------------------- /tests/results/w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/w.json -------------------------------------------------------------------------------- /tests/results/wba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/wba.json -------------------------------------------------------------------------------- /tests/results/wlk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/wlk.json -------------------------------------------------------------------------------- /tests/results/wmb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/wmb.json -------------------------------------------------------------------------------- /tests/results/wmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/wmt.json -------------------------------------------------------------------------------- /tests/results/wor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/wor.json -------------------------------------------------------------------------------- /tests/results/wu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/wu.json -------------------------------------------------------------------------------- /tests/results/xom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/xom.json -------------------------------------------------------------------------------- /tests/results/znga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/results/znga.json -------------------------------------------------------------------------------- /tests/test_expense_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/test_expense_collection.py -------------------------------------------------------------------------------- /tests/validators/arc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/tests/validators/arc_test.py -------------------------------------------------------------------------------- /worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehannaford/statement-parser/HEAD/worker.py --------------------------------------------------------------------------------