Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created February 6, 2019 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/d2cd9f991a6ac803f8d9f8aaea228cf3 to your computer and use it in GitHub Desktop.
Save ryantm/d2cd9f991a6ac803f8d9f8aaea228cf3 to your computer and use it in GitHub Desktop.
/nix/store/m82h11qpnyy0kg2ww70nfg3yjqfidgg1-python3.7-beancount-2.2.1
├── bin
│   ├── bean-bake
│   ├── bean-check
│   ├── bean-doctor
│   ├── bean-example
│   ├── bean-extract
│   ├── bean-file
│   ├── bean-format
│   ├── bean-identify
│   ├── bean-price
│   ├── bean-query
│   ├── bean-report
│   ├── bean-sql
│   ├── bean-web
│   ├── treeify
│   └── upload-to-sheets
├── elisp
│   └── beancount.el
├── lib
│   └── python3.7
│   └── site-packages
│   ├── beancount
│   │   ├── core
│   │   │   ├── account.py
│   │   │   ├── account_test.py
│   │   │   ├── account_types.py
│   │   │   ├── account_types_test.py
│   │   │   ├── amount.py
│   │   │   ├── amount_test.py
│   │   │   ├── compare.py
│   │   │   ├── compare_test.py
│   │   │   ├── convert.py
│   │   │   ├── convert_test.py
│   │   │   ├── data.py
│   │   │   ├── data_test.py
│   │   │   ├── display_context.py
│   │   │   ├── display_context_test.py
│   │   │   ├── distribution.py
│   │   │   ├── distribution_test.py
│   │   │   ├── flags.py
│   │   │   ├── flags_test.py
│   │   │   ├── getters.py
│   │   │   ├── getters_test.py
│   │   │   ├── __init__.py
│   │   │   ├── interpolate.py
│   │   │   ├── interpolate_test.py
│   │   │   ├── inventory.py
│   │   │   ├── inventory_test.py
│   │   │   ├── number.py
│   │   │   ├── number_test.py
│   │   │   ├── position.py
│   │   │   ├── position_test.py
│   │   │   ├── prices.py
│   │   │   ├── prices_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── account.cpython-37.pyc
│   │   │   │   ├── account_test.cpython-37.pyc
│   │   │   │   ├── account_types.cpython-37.pyc
│   │   │   │   ├── account_types_test.cpython-37.pyc
│   │   │   │   ├── amount.cpython-37.pyc
│   │   │   │   ├── amount_test.cpython-37.pyc
│   │   │   │   ├── compare.cpython-37.pyc
│   │   │   │   ├── compare_test.cpython-37.pyc
│   │   │   │   ├── convert.cpython-37.pyc
│   │   │   │   ├── convert_test.cpython-37.pyc
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   ├── data_test.cpython-37.pyc
│   │   │   │   ├── display_context.cpython-37.pyc
│   │   │   │   ├── display_context_test.cpython-37.pyc
│   │   │   │   ├── distribution.cpython-37.pyc
│   │   │   │   ├── distribution_test.cpython-37.pyc
│   │   │   │   ├── flags.cpython-37.pyc
│   │   │   │   ├── flags_test.cpython-37.pyc
│   │   │   │   ├── getters.cpython-37.pyc
│   │   │   │   ├── getters_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── interpolate.cpython-37.pyc
│   │   │   │   ├── interpolate_test.cpython-37.pyc
│   │   │   │   ├── inventory.cpython-37.pyc
│   │   │   │   ├── inventory_test.cpython-37.pyc
│   │   │   │   ├── number.cpython-37.pyc
│   │   │   │   ├── number_test.cpython-37.pyc
│   │   │   │   ├── position.cpython-37.pyc
│   │   │   │   ├── position_test.cpython-37.pyc
│   │   │   │   ├── prices.cpython-37.pyc
│   │   │   │   ├── prices_test.cpython-37.pyc
│   │   │   │   ├── realization.cpython-37.pyc
│   │   │   │   └── realization_test.cpython-37.pyc
│   │   │   ├── realization.py
│   │   │   └── realization_test.py
│   │   ├── ingest
│   │   │   ├── cache.py
│   │   │   ├── cache_test.py
│   │   │   ├── extract.py
│   │   │   ├── extract_test.py
│   │   │   ├── file.py
│   │   │   ├── file_test.py
│   │   │   ├── identify.py
│   │   │   ├── identify_test.py
│   │   │   ├── importer.py
│   │   │   ├── importers
│   │   │   │   ├── config.py
│   │   │   │   ├── config_test.py
│   │   │   │   ├── csv.py
│   │   │   │   ├── csv_test.py
│   │   │   │   ├── fileonly.py
│   │   │   │   ├── fileonly_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mixins
│   │   │   │   │   ├── config.py
│   │   │   │   │   ├── filing.py
│   │   │   │   │   ├── identifier.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   │   ├── filing.cpython-37.pyc
│   │   │   │   │   ├── identifier.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── ofx.py
│   │   │   │   ├── ofx_test.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── config_test.cpython-37.pyc
│   │   │   │   ├── csv.cpython-37.pyc
│   │   │   │   ├── csv_test.cpython-37.pyc
│   │   │   │   ├── fileonly.cpython-37.pyc
│   │   │   │   ├── fileonly_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ofx.cpython-37.pyc
│   │   │   │   └── ofx_test.cpython-37.pyc
│   │   │   ├── importer_test.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cache.cpython-37.pyc
│   │   │   │   ├── cache_test.cpython-37.pyc
│   │   │   │   ├── extract.cpython-37.pyc
│   │   │   │   ├── extract_test.cpython-37.pyc
│   │   │   │   ├── file.cpython-37.pyc
│   │   │   │   ├── file_test.cpython-37.pyc
│   │   │   │   ├── identify.cpython-37.pyc
│   │   │   │   ├── identify_test.cpython-37.pyc
│   │   │   │   ├── importer.cpython-37.pyc
│   │   │   │   ├── importer_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── regression.cpython-37.pyc
│   │   │   │   ├── regression_pytest.cpython-37.pyc
│   │   │   │   ├── regression_test.cpython-37.pyc
│   │   │   │   ├── scripts_utils.cpython-37.pyc
│   │   │   │   ├── scripts_utils_test.cpython-37.pyc
│   │   │   │   ├── similar.cpython-37.pyc
│   │   │   │   └── similar_test.cpython-37.pyc
│   │   │   ├── regression.py
│   │   │   ├── regression_pytest.py
│   │   │   ├── regression_test.py
│   │   │   ├── scripts_utils.py
│   │   │   ├── scripts_utils_test.py
│   │   │   ├── similar.py
│   │   │   └── similar_test.py
│   │   ├── __init__.py
│   │   ├── loader.py
│   │   ├── loader_test.py
│   │   ├── ops
│   │   │   ├── balance.py
│   │   │   ├── balance_test.py
│   │   │   ├── basicops.py
│   │   │   ├── basicops_test.py
│   │   │   ├── compress.py
│   │   │   ├── compress_test.py
│   │   │   ├── documents.py
│   │   │   ├── documents_test.py
│   │   │   ├── holdings.py
│   │   │   ├── holdings_test.py
│   │   │   ├── __init__.py
│   │   │   ├── lifetimes.py
│   │   │   ├── lifetimes_test.py
│   │   │   ├── pad.py
│   │   │   ├── pad_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── balance.cpython-37.pyc
│   │   │   │   ├── balance_test.cpython-37.pyc
│   │   │   │   ├── basicops.cpython-37.pyc
│   │   │   │   ├── basicops_test.cpython-37.pyc
│   │   │   │   ├── compress.cpython-37.pyc
│   │   │   │   ├── compress_test.cpython-37.pyc
│   │   │   │   ├── documents.cpython-37.pyc
│   │   │   │   ├── documents_test.cpython-37.pyc
│   │   │   │   ├── holdings.cpython-37.pyc
│   │   │   │   ├── holdings_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── lifetimes.cpython-37.pyc
│   │   │   │   ├── lifetimes_test.cpython-37.pyc
│   │   │   │   ├── pad.cpython-37.pyc
│   │   │   │   ├── pad_test.cpython-37.pyc
│   │   │   │   ├── summarize.cpython-37.pyc
│   │   │   │   ├── summarize_test.cpython-37.pyc
│   │   │   │   ├── validation.cpython-37.pyc
│   │   │   │   └── validation_test.cpython-37.pyc
│   │   │   ├── summarize.py
│   │   │   ├── summarize_test.py
│   │   │   ├── validation.py
│   │   │   └── validation_test.py
│   │   ├── parser
│   │   │   ├── booking_full.py
│   │   │   ├── booking_full_test.py
│   │   │   ├── booking_method.py
│   │   │   ├── booking_method_test.py
│   │   │   ├── booking.py
│   │   │   ├── booking_test.py
│   │   │   ├── cmptest.py
│   │   │   ├── cmptest_test.py
│   │   │   ├── grammar.h
│   │   │   ├── grammar.py
│   │   │   ├── grammar_test.py
│   │   │   ├── hashsrc.py
│   │   │   ├── hashsrc_test.py
│   │   │   ├── __init__.py
│   │   │   ├── lexer.h
│   │   │   ├── lexer.py
│   │   │   ├── lexer_test.py
│   │   │   ├── options.py
│   │   │   ├── options_test.py
│   │   │   ├── _parser.cpython-37m-x86_64-linux-gnu.so
│   │   │   ├── parser.h
│   │   │   ├── parser.py
│   │   │   ├── parser_test.py
│   │   │   ├── printer.py
│   │   │   ├── printer_test.py
│   │   │   └── __pycache__
│   │   │   ├── booking.cpython-37.pyc
│   │   │   ├── booking_full.cpython-37.pyc
│   │   │   ├── booking_full_test.cpython-37.pyc
│   │   │   ├── booking_method.cpython-37.pyc
│   │   │   ├── booking_method_test.cpython-37.pyc
│   │   │   ├── booking_test.cpython-37.pyc
│   │   │   ├── cmptest.cpython-37.pyc
│   │   │   ├── cmptest_test.cpython-37.pyc
│   │   │   ├── grammar.cpython-37.pyc
│   │   │   ├── grammar_test.cpython-37.pyc
│   │   │   ├── hashsrc.cpython-37.pyc
│   │   │   ├── hashsrc_test.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── lexer.cpython-37.pyc
│   │   │   ├── lexer_test.cpython-37.pyc
│   │   │   ├── options.cpython-37.pyc
│   │   │   ├── options_test.cpython-37.pyc
│   │   │   ├── parser.cpython-37.pyc
│   │   │   ├── parser_test.cpython-37.pyc
│   │   │   ├── printer.cpython-37.pyc
│   │   │   └── printer_test.cpython-37.pyc
│   │   ├── plugins
│   │   │   ├── auto_accounts.py
│   │   │   ├── auto_accounts_test.py
│   │   │   ├── auto.py
│   │   │   ├── auto_test.py
│   │   │   ├── book_conversions.py
│   │   │   ├── book_conversions_test.py
│   │   │   ├── check_average_cost.py
│   │   │   ├── check_average_cost_test.py
│   │   │   ├── check_closing.py
│   │   │   ├── check_closing_test.py
│   │   │   ├── check_commodity.py
│   │   │   ├── check_commodity_test.py
│   │   │   ├── coherent_cost.py
│   │   │   ├── coherent_cost_test.py
│   │   │   ├── commodity_attr.py
│   │   │   ├── commodity_attr_test.py
│   │   │   ├── divert_expenses.py
│   │   │   ├── divert_expenses_test.py
│   │   │   ├── exclude_tag.py
│   │   │   ├── exclude_tag_test.py
│   │   │   ├── fill_account.py
│   │   │   ├── fill_account_test.py
│   │   │   ├── fix_payees.py
│   │   │   ├── fix_payees_test.py
│   │   │   ├── forecast.py
│   │   │   ├── forecast_test.py
│   │   │   ├── implicit_prices.py
│   │   │   ├── implicit_prices_test.py
│   │   │   ├── __init__.py
│   │   │   ├── ira_contribs.py
│   │   │   ├── ira_contribs_test.py
│   │   │   ├── leafonly.py
│   │   │   ├── leafonly_test.py
│   │   │   ├── mark_unverified.py
│   │   │   ├── mark_unverified_test.py
│   │   │   ├── merge_meta.py
│   │   │   ├── merge_meta_test.py
│   │   │   ├── noduplicates.py
│   │   │   ├── noduplicates_test.py
│   │   │   ├── nounused.py
│   │   │   ├── nounused_test.py
│   │   │   ├── onecommodity.py
│   │   │   ├── onecommodity_test.py
│   │   │   ├── pedantic.py
│   │   │   ├── pedantic_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── auto_accounts.cpython-37.pyc
│   │   │   │   ├── auto_accounts_test.cpython-37.pyc
│   │   │   │   ├── auto.cpython-37.pyc
│   │   │   │   ├── auto_test.cpython-37.pyc
│   │   │   │   ├── book_conversions.cpython-37.pyc
│   │   │   │   ├── book_conversions_test.cpython-37.pyc
│   │   │   │   ├── check_average_cost.cpython-37.pyc
│   │   │   │   ├── check_average_cost_test.cpython-37.pyc
│   │   │   │   ├── check_closing.cpython-37.pyc
│   │   │   │   ├── check_closing_test.cpython-37.pyc
│   │   │   │   ├── check_commodity.cpython-37.pyc
│   │   │   │   ├── check_commodity_test.cpython-37.pyc
│   │   │   │   ├── coherent_cost.cpython-37.pyc
│   │   │   │   ├── coherent_cost_test.cpython-37.pyc
│   │   │   │   ├── commodity_attr.cpython-37.pyc
│   │   │   │   ├── commodity_attr_test.cpython-37.pyc
│   │   │   │   ├── divert_expenses.cpython-37.pyc
│   │   │   │   ├── divert_expenses_test.cpython-37.pyc
│   │   │   │   ├── exclude_tag.cpython-37.pyc
│   │   │   │   ├── exclude_tag_test.cpython-37.pyc
│   │   │   │   ├── fill_account.cpython-37.pyc
│   │   │   │   ├── fill_account_test.cpython-37.pyc
│   │   │   │   ├── fix_payees.cpython-37.pyc
│   │   │   │   ├── fix_payees_test.cpython-37.pyc
│   │   │   │   ├── forecast.cpython-37.pyc
│   │   │   │   ├── forecast_test.cpython-37.pyc
│   │   │   │   ├── implicit_prices.cpython-37.pyc
│   │   │   │   ├── implicit_prices_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ira_contribs.cpython-37.pyc
│   │   │   │   ├── ira_contribs_test.cpython-37.pyc
│   │   │   │   ├── leafonly.cpython-37.pyc
│   │   │   │   ├── leafonly_test.cpython-37.pyc
│   │   │   │   ├── mark_unverified.cpython-37.pyc
│   │   │   │   ├── mark_unverified_test.cpython-37.pyc
│   │   │   │   ├── merge_meta.cpython-37.pyc
│   │   │   │   ├── merge_meta_test.cpython-37.pyc
│   │   │   │   ├── noduplicates.cpython-37.pyc
│   │   │   │   ├── noduplicates_test.cpython-37.pyc
│   │   │   │   ├── nounused.cpython-37.pyc
│   │   │   │   ├── nounused_test.cpython-37.pyc
│   │   │   │   ├── onecommodity.cpython-37.pyc
│   │   │   │   ├── onecommodity_test.cpython-37.pyc
│   │   │   │   ├── pedantic.cpython-37.pyc
│   │   │   │   ├── pedantic_test.cpython-37.pyc
│   │   │   │   ├── sellgains.cpython-37.pyc
│   │   │   │   ├── sellgains_test.cpython-37.pyc
│   │   │   │   ├── split_expenses.cpython-37.pyc
│   │   │   │   ├── split_expenses_test.cpython-37.pyc
│   │   │   │   ├── tag_pending.cpython-37.pyc
│   │   │   │   ├── tag_pending_test.cpython-37.pyc
│   │   │   │   ├── unique_prices.cpython-37.pyc
│   │   │   │   ├── unique_prices_test.cpython-37.pyc
│   │   │   │   ├── unrealized.cpython-37.pyc
│   │   │   │   └── unrealized_test.cpython-37.pyc
│   │   │   ├── sellgains.py
│   │   │   ├── sellgains_test.py
│   │   │   ├── split_expenses.py
│   │   │   ├── split_expenses_test.py
│   │   │   ├── tag_pending.py
│   │   │   ├── tag_pending_test.py
│   │   │   ├── unique_prices.py
│   │   │   ├── unique_prices_test.py
│   │   │   ├── unrealized.py
│   │   │   └── unrealized_test.py
│   │   ├── prices
│   │   │   ├── find_prices.py
│   │   │   ├── find_prices_test.py
│   │   │   ├── __init__.py
│   │   │   ├── price.py
│   │   │   ├── price_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── find_prices.cpython-37.pyc
│   │   │   │   ├── find_prices_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── price.cpython-37.pyc
│   │   │   │   ├── price_test.cpython-37.pyc
│   │   │   │   └── source.cpython-37.pyc
│   │   │   ├── source.py
│   │   │   └── sources
│   │   │   ├── iex.py
│   │   │   ├── iex_test.py
│   │   │   ├── __init__.py
│   │   │   ├── oanda.py
│   │   │   ├── oanda_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── iex.cpython-37.pyc
│   │   │   │   ├── iex_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── oanda.cpython-37.pyc
│   │   │   │   ├── oanda_test.cpython-37.pyc
│   │   │   │   ├── quandl.cpython-37.pyc
│   │   │   │   ├── quandl_test.cpython-37.pyc
│   │   │   │   ├── yahoo.cpython-37.pyc
│   │   │   │   └── yahoo_test.cpython-37.pyc
│   │   │   ├── quandl.py
│   │   │   ├── quandl_test.py
│   │   │   ├── yahoo.py
│   │   │   └── yahoo_test.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── loader.cpython-37.pyc
│   │   │   └── loader_test.cpython-37.pyc
│   │   ├── query
│   │   │   ├── __init__.py
│   │   │   ├── numberify.py
│   │   │   ├── numberify_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── numberify.cpython-37.pyc
│   │   │   │   ├── numberify_test.cpython-37.pyc
│   │   │   │   ├── query_compile.cpython-37.pyc
│   │   │   │   ├── query_compile_test.cpython-37.pyc
│   │   │   │   ├── query.cpython-37.pyc
│   │   │   │   ├── query_env.cpython-37.pyc
│   │   │   │   ├── query_env_test.cpython-37.pyc
│   │   │   │   ├── query_execute.cpython-37.pyc
│   │   │   │   ├── query_execute_test.cpython-37.pyc
│   │   │   │   ├── query_parser.cpython-37.pyc
│   │   │   │   ├── query_parser_test.cpython-37.pyc
│   │   │   │   ├── query_render.cpython-37.pyc
│   │   │   │   ├── query_render_test.cpython-37.pyc
│   │   │   │   ├── query_test.cpython-37.pyc
│   │   │   │   ├── shell.cpython-37.pyc
│   │   │   │   └── shell_test.cpython-37.pyc
│   │   │   ├── query_compile.py
│   │   │   ├── query_compile_test.py
│   │   │   ├── query_env.py
│   │   │   ├── query_env_test.py
│   │   │   ├── query_execute.py
│   │   │   ├── query_execute_test.py
│   │   │   ├── query_parser.py
│   │   │   ├── query_parser_test.py
│   │   │   ├── query.py
│   │   │   ├── query_render.py
│   │   │   ├── query_render_test.py
│   │   │   ├── query_test.py
│   │   │   ├── shell.py
│   │   │   └── shell_test.py
│   │   ├── reports
│   │   │   ├── balance_reports.py
│   │   │   ├── balance_reports_test.py
│   │   │   ├── base.py
│   │   │   ├── base_test.py
│   │   │   ├── context.py
│   │   │   ├── context_test.py
│   │   │   ├── convert_reports.py
│   │   │   ├── convert_reports_test.py
│   │   │   ├── export_reports.py
│   │   │   ├── export_reports_test.py
│   │   │   ├── gviz.py
│   │   │   ├── gviz_test.py
│   │   │   ├── holdings_reports.py
│   │   │   ├── holdings_reports_test.py
│   │   │   ├── html_formatter.py
│   │   │   ├── html_formatter_test.py
│   │   │   ├── __init__.py
│   │   │   ├── journal_html.py
│   │   │   ├── journal_html_test.py
│   │   │   ├── journal_reports.py
│   │   │   ├── journal_reports_test.py
│   │   │   ├── journal_text.py
│   │   │   ├── journal_text_test.py
│   │   │   ├── misc_reports.py
│   │   │   ├── misc_reports_test.py
│   │   │   ├── price_reports.py
│   │   │   ├── price_reports_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── balance_reports.cpython-37.pyc
│   │   │   │   ├── balance_reports_test.cpython-37.pyc
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── base_test.cpython-37.pyc
│   │   │   │   ├── context.cpython-37.pyc
│   │   │   │   ├── context_test.cpython-37.pyc
│   │   │   │   ├── convert_reports.cpython-37.pyc
│   │   │   │   ├── convert_reports_test.cpython-37.pyc
│   │   │   │   ├── export_reports.cpython-37.pyc
│   │   │   │   ├── export_reports_test.cpython-37.pyc
│   │   │   │   ├── gviz.cpython-37.pyc
│   │   │   │   ├── gviz_test.cpython-37.pyc
│   │   │   │   ├── holdings_reports.cpython-37.pyc
│   │   │   │   ├── holdings_reports_test.cpython-37.pyc
│   │   │   │   ├── html_formatter.cpython-37.pyc
│   │   │   │   ├── html_formatter_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── journal_html.cpython-37.pyc
│   │   │   │   ├── journal_html_test.cpython-37.pyc
│   │   │   │   ├── journal_reports.cpython-37.pyc
│   │   │   │   ├── journal_reports_test.cpython-37.pyc
│   │   │   │   ├── journal_text.cpython-37.pyc
│   │   │   │   ├── journal_text_test.cpython-37.pyc
│   │   │   │   ├── misc_reports.cpython-37.pyc
│   │   │   │   ├── misc_reports_test.cpython-37.pyc
│   │   │   │   ├── price_reports.cpython-37.pyc
│   │   │   │   ├── price_reports_test.cpython-37.pyc
│   │   │   │   ├── report.cpython-37.pyc
│   │   │   │   ├── report_test.cpython-37.pyc
│   │   │   │   ├── table.cpython-37.pyc
│   │   │   │   ├── table_test.cpython-37.pyc
│   │   │   │   ├── tree_table.cpython-37.pyc
│   │   │   │   └── tree_table_test.cpython-37.pyc
│   │   │   ├── report.py
│   │   │   ├── report_test.py
│   │   │   ├── table.py
│   │   │   ├── table_test.py
│   │   │   ├── template.html
│   │   │   ├── tree_table.py
│   │   │   └── tree_table_test.py
│   │   ├── scripts
│   │   │   ├── bake.py
│   │   │   ├── bake_test.py
│   │   │   ├── check_examples_test.py
│   │   │   ├── check.py
│   │   │   ├── check_test.py
│   │   │   ├── deps.py
│   │   │   ├── deps_test.py
│   │   │   ├── directories.py
│   │   │   ├── directories_test.py
│   │   │   ├── doctor.py
│   │   │   ├── doctor_test.py
│   │   │   ├── example.py
│   │   │   ├── example_test.py
│   │   │   ├── format.py
│   │   │   ├── format_test.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bake.cpython-37.pyc
│   │   │   │   ├── bake_test.cpython-37.pyc
│   │   │   │   ├── check.cpython-37.pyc
│   │   │   │   ├── check_examples_test.cpython-37.pyc
│   │   │   │   ├── check_test.cpython-37.pyc
│   │   │   │   ├── deps.cpython-37.pyc
│   │   │   │   ├── deps_test.cpython-37.pyc
│   │   │   │   ├── directories.cpython-37.pyc
│   │   │   │   ├── directories_test.cpython-37.pyc
│   │   │   │   ├── doctor.cpython-37.pyc
│   │   │   │   ├── doctor_test.cpython-37.pyc
│   │   │   │   ├── example.cpython-37.pyc
│   │   │   │   ├── example_test.cpython-37.pyc
│   │   │   │   ├── format.cpython-37.pyc
│   │   │   │   ├── format_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── setup_test.cpython-37.pyc
│   │   │   │   ├── sql.cpython-37.pyc
│   │   │   │   ├── sql_test.cpython-37.pyc
│   │   │   │   ├── tutorial.cpython-37.pyc
│   │   │   │   └── tutorial_test.cpython-37.pyc
│   │   │   ├── setup_test.py
│   │   │   ├── sql.py
│   │   │   ├── sql_test.py
│   │   │   ├── tutorial.py
│   │   │   └── tutorial_test.py
│   │   ├── tools
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── sheets_upload.cpython-37.pyc
│   │   │   │   ├── sheets_upload_test.cpython-37.pyc
│   │   │   │   ├── treeify.cpython-37.pyc
│   │   │   │   └── treeify_test.cpython-37.pyc
│   │   │   ├── sheets_upload.py
│   │   │   ├── sheets_upload_test.py
│   │   │   ├── treeify.py
│   │   │   └── treeify_test.py
│   │   ├── utils
│   │   │   ├── bisect_key.py
│   │   │   ├── bisect_key_test.py
│   │   │   ├── csv_utils.py
│   │   │   ├── csv_utils_test.py
│   │   │   ├── date_utils.py
│   │   │   ├── date_utils_test.py
│   │   │   ├── defdict.py
│   │   │   ├── defdict_test.py
│   │   │   ├── encryption.py
│   │   │   ├── encryption_test.py
│   │   │   ├── file_type.py
│   │   │   ├── file_type_test.py
│   │   │   ├── file_utils.py
│   │   │   ├── file_utils_test.py
│   │   │   ├── import_utils.py
│   │   │   ├── import_utils_test.py
│   │   │   ├── __init__.py
│   │   │   ├── invariants.py
│   │   │   ├── invariants_test.py
│   │   │   ├── memo.py
│   │   │   ├── memo_test.py
│   │   │   ├── misc_utils.py
│   │   │   ├── misc_utils_test.py
│   │   │   ├── net_utils.py
│   │   │   ├── net_utils_test.py
│   │   │   ├── pager.py
│   │   │   ├── pager_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bisect_key.cpython-37.pyc
│   │   │   │   ├── bisect_key_test.cpython-37.pyc
│   │   │   │   ├── csv_utils.cpython-37.pyc
│   │   │   │   ├── csv_utils_test.cpython-37.pyc
│   │   │   │   ├── date_utils.cpython-37.pyc
│   │   │   │   ├── date_utils_test.cpython-37.pyc
│   │   │   │   ├── defdict.cpython-37.pyc
│   │   │   │   ├── defdict_test.cpython-37.pyc
│   │   │   │   ├── encryption.cpython-37.pyc
│   │   │   │   ├── encryption_test.cpython-37.pyc
│   │   │   │   ├── file_type.cpython-37.pyc
│   │   │   │   ├── file_type_test.cpython-37.pyc
│   │   │   │   ├── file_utils.cpython-37.pyc
│   │   │   │   ├── file_utils_test.cpython-37.pyc
│   │   │   │   ├── import_utils.cpython-37.pyc
│   │   │   │   ├── import_utils_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── invariants.cpython-37.pyc
│   │   │   │   ├── invariants_test.cpython-37.pyc
│   │   │   │   ├── memo.cpython-37.pyc
│   │   │   │   ├── memo_test.cpython-37.pyc
│   │   │   │   ├── misc_utils.cpython-37.pyc
│   │   │   │   ├── misc_utils_test.cpython-37.pyc
│   │   │   │   ├── net_utils.cpython-37.pyc
│   │   │   │   ├── net_utils_test.cpython-37.pyc
│   │   │   │   ├── pager.cpython-37.pyc
│   │   │   │   ├── pager_test.cpython-37.pyc
│   │   │   │   ├── regexp_utils.cpython-37.pyc
│   │   │   │   ├── regexp_utils_test.cpython-37.pyc
│   │   │   │   ├── snoop.cpython-37.pyc
│   │   │   │   ├── snoop_test.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   ├── test_utils_test.cpython-37.pyc
│   │   │   │   ├── text_utils.cpython-37.pyc
│   │   │   │   ├── text_utils_test.cpython-37.pyc
│   │   │   │   ├── version.cpython-37.pyc
│   │   │   │   └── version_test.cpython-37.pyc
│   │   │   ├── regexp_utils.py
│   │   │   ├── regexp_utils_test.py
│   │   │   ├── snoop.py
│   │   │   ├── snoop_test.py
│   │   │   ├── test_utils.py
│   │   │   ├── test_utils_test.py
│   │   │   ├── text_utils.py
│   │   │   ├── text_utils_test.py
│   │   │   ├── version.py
│   │   │   └── version_test.py
│   │   └── web
│   │   ├── bottle_utils.py
│   │   ├── bottle_utils_test.py
│   │   ├── favicon.ico
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── bottle_utils.cpython-37.pyc
│   │   │   ├── bottle_utils_test.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── scrape.cpython-37.pyc
│   │   │   ├── scrape_test.cpython-37.pyc
│   │   │   ├── views.cpython-37.pyc
│   │   │   ├── views_test.cpython-37.pyc
│   │   │   ├── web.cpython-37.pyc
│   │   │   └── web_test.cpython-37.pyc
│   │   ├── scrape.py
│   │   ├── scrape_test.py
│   │   ├── snippets.html
│   │   ├── third_party
│   │   │   └── sorttable.js
│   │   ├── views.py
│   │   ├── views_test.py
│   │   ├── web.css
│   │   ├── web.html
│   │   ├── web.py
│   │   └── web_test.py
│   └── beancount-2.2.1.dist-info
│   ├── COPYING
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
40 directories, 631 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment