Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 2, 2019 04:18
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/31d4d5ec42373873c54e647ea7521d84 to your computer and use it in GitHub Desktop.
Save ryantm/31d4d5ec42373873c54e647ea7521d84 to your computer and use it in GitHub Desktop.
/nix/store/6nsszi4bvbwcm27wa4zvwqf7q83mqvql-fava-1.10
├── bin
│   └── fava
├── lib
│   └── python3.7
│   └── site-packages
│   ├── fava
│   │   ├── application.py
│   │   ├── cli.py
│   │   ├── core
│   │   │   ├── attributes.py
│   │   │   ├── budgets.py
│   │   │   ├── charts.py
│   │   │   ├── fava_options.py
│   │   │   ├── file.py
│   │   │   ├── filters.py
│   │   │   ├── helpers.py
│   │   │   ├── ingest.py
│   │   │   ├── __init__.py
│   │   │   ├── inventory.py
│   │   │   ├── misc.py
│   │   │   ├── number.py
│   │   │   ├── __pycache__
│   │   │   │   ├── attributes.cpython-37.pyc
│   │   │   │   ├── budgets.cpython-37.pyc
│   │   │   │   ├── charts.cpython-37.pyc
│   │   │   │   ├── fava_options.cpython-37.pyc
│   │   │   │   ├── file.cpython-37.pyc
│   │   │   │   ├── filters.cpython-37.pyc
│   │   │   │   ├── helpers.cpython-37.pyc
│   │   │   │   ├── ingest.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── inventory.cpython-37.pyc
│   │   │   │   ├── misc.cpython-37.pyc
│   │   │   │   ├── number.cpython-37.pyc
│   │   │   │   ├── query_shell.cpython-37.pyc
│   │   │   │   ├── tree.cpython-37.pyc
│   │   │   │   └── watcher.cpython-37.pyc
│   │   │   ├── query_shell.py
│   │   │   ├── tree.py
│   │   │   └── watcher.py
│   │   ├── ext
│   │   │   ├── auto_commit.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── auto_commit.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── help
│   │   │   ├── beancount_syntax.md
│   │   │   ├── budgets.md
│   │   │   ├── extensions.md
│   │   │   ├── features.md
│   │   │   ├── filters.md
│   │   │   ├── import.md
│   │   │   ├── _index.md
│   │   │   ├── __init__.py
│   │   │   ├── options.md
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── json_api.py
│   │   ├── plugins
│   │   │   ├── link_documents.py
│   │   │   ├── __pycache__
│   │   │   │   ├── link_documents.cpython-37.pyc
│   │   │   │   └── tag_discovered_documents.cpython-37.pyc
│   │   │   └── tag_discovered_documents.py
│   │   ├── __pycache__
│   │   │   ├── application.cpython-37.pyc
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── json_api.cpython-37.pyc
│   │   │   ├── serialisation.cpython-37.pyc
│   │   │   └── template_filters.cpython-37.pyc
│   │   ├── serialisation.py
│   │   ├── static
│   │   │   ├── gen
│   │   │   │   ├── app.css
│   │   │   │   ├── app.js
│   │   │   │   ├── fira-mono-latin-400.woff2
│   │   │   │   ├── fira-mono-latin-500.woff2
│   │   │   │   ├── fira-sans-latin-400.woff2
│   │   │   │   ├── fira-sans-latin-500.woff2
│   │   │   │   ├── source-code-pro-latin-400.woff2
│   │   │   │   ├── source-code-pro-latin-500.woff2
│   │   │   │   ├── source-serif-pro-latin-400.woff2
│   │   │   │   └── source-serif-pro-latin-600.woff2
│   │   │   └── images
│   │   │   └── favicon.ico
│   │   ├── template_filters.py
│   │   ├── templates
│   │   │   ├── account.html
│   │   │   ├── _aside.html
│   │   │   ├── balance_sheet.html
│   │   │   ├── beancount_file
│   │   │   ├── _charts.html
│   │   │   ├── commodities.html
│   │   │   ├── _context.html
│   │   │   ├── editor.html
│   │   │   ├── _entry_filters.html
│   │   │   ├── _entry_forms.html
│   │   │   ├── _error.html
│   │   │   ├── errors.html
│   │   │   ├── events.html
│   │   │   ├── extract.html
│   │   │   ├── _globals.html
│   │   │   ├── help.html
│   │   │   ├── holdings.html
│   │   │   ├── import.html
│   │   │   ├── income_statement.html
│   │   │   ├── journal.html
│   │   │   ├── _journal_table.html
│   │   │   ├── _layout.html
│   │   │   ├── macros
│   │   │   │   └── _account_macros.html
│   │   │   ├── options.html
│   │   │   ├── _overlays.html
│   │   │   ├── query.html
│   │   │   ├── _query_table.html
│   │   │   ├── statistics.html
│   │   │   ├── _tree_table.html
│   │   │   └── trial_balance.html
│   │   ├── translations
│   │   │   ├── de
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── es
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── fr
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── nl
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── pt
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── ru
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── sk
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   ├── uk
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── messages.mo
│   │   │   └── zh
│   │   │   └── LC_MESSAGES
│   │   │   └── messages.mo
│   │   └── util
│   │   ├── date.py
│   │   ├── excel.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── date.cpython-37.pyc
│   │   │   ├── excel.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── ranking.cpython-37.pyc
│   │   └── ranking.py
│   └── fava-1.10.dist-info
│   ├── AUTHORS
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
42 directories, 128 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment