├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .mypy.ini ├── .readthedocs.yml ├── LICENSE ├── README.md ├── autobean_refactor ├── __init__.py ├── beancount.lark ├── editor.py ├── meta_models │ ├── __init__.py │ ├── base.py │ └── meta_models.py ├── modelgen │ ├── __init__.py │ ├── descriptor.py │ ├── generate.py │ ├── modelgen_test.py │ └── raw_model.mako ├── models │ ├── __init__.py │ ├── account.py │ ├── amount.py │ ├── balance.py │ ├── base.py │ ├── block_comment.py │ ├── bool.py │ ├── close.py │ ├── commodity.py │ ├── compound_amount.py │ ├── cost.py │ ├── cost_component.py │ ├── cost_spec.py │ ├── currency.py │ ├── custom.py │ ├── date.py │ ├── document.py │ ├── escaped_string.py │ ├── event.py │ ├── file.py │ ├── generated │ │ ├── __init__.py │ │ ├── amount.py │ │ ├── balance.py │ │ ├── close.py │ │ ├── commodity.py │ │ ├── compound_amount.py │ │ ├── cost_spec.py │ │ ├── custom.py │ │ ├── document.py │ │ ├── event.py │ │ ├── file.py │ │ ├── ignored_line.py │ │ ├── include.py │ │ ├── meta_item.py │ │ ├── note.py │ │ ├── number_expr.py │ │ ├── number_paren_expr.py │ │ ├── number_unary_expr.py │ │ ├── open.py │ │ ├── option.py │ │ ├── pad.py │ │ ├── plugin.py │ │ ├── popmeta.py │ │ ├── poptag.py │ │ ├── posting.py │ │ ├── price.py │ │ ├── pushmeta.py │ │ ├── pushtag.py │ │ ├── query.py │ │ ├── tolerance.py │ │ ├── total_cost.py │ │ ├── total_price.py │ │ ├── transaction.py │ │ ├── unit_cost.py │ │ └── unit_price.py │ ├── ignored.py │ ├── ignored_line.py │ ├── include.py │ ├── inline_comment.py │ ├── internal │ │ ├── __init__.py │ │ ├── base_property.py │ │ ├── base_token_models.py │ │ ├── fields.py │ │ ├── indexes.py │ │ ├── interleaving_comments.py │ │ ├── placeholder.py │ │ ├── properties.py │ │ ├── registry.py │ │ ├── repeated.py │ │ ├── spacing_accessors.py │ │ ├── surrounding_comments.py │ │ ├── token_models.py │ │ └── value_properties.py │ ├── link.py │ ├── meta_item.py │ ├── meta_item_internal.py │ ├── meta_key.py │ ├── meta_value.py │ ├── meta_value_internal.py │ ├── note.py │ ├── null.py │ ├── number.py │ ├── number_add_expr.py │ ├── number_atom_expr.py │ ├── number_expr.py │ ├── number_mul_expr.py │ ├── number_paren_expr.py │ ├── number_unary_expr.py │ ├── open.py │ ├── option.py │ ├── pad.py │ ├── plugin.py │ ├── popmeta.py │ ├── poptag.py │ ├── posting.py │ ├── posting_flag.py │ ├── price.py │ ├── punctuation.py │ ├── pushmeta.py │ ├── pushtag.py │ ├── query.py │ ├── spacing.py │ ├── tag.py │ ├── tolerance.py │ ├── total_price.py │ ├── transaction.py │ ├── transaction_flag.py │ └── unit_price.py ├── parser.py ├── printer.py ├── py.typed ├── tests │ ├── __init__.py │ ├── base.py │ ├── benchmark │ │ └── benchmark_test.py │ ├── conftest.py │ ├── editor_test.py │ ├── generic │ │ ├── __init__.py │ │ ├── auto_claim_comments_test.py │ │ ├── inline_comment_test.py │ │ ├── interleaving_comment_test.py │ │ ├── meta_test.py │ │ ├── spacing_accessors_test.py │ │ └── surrounding_comment_test.py │ ├── models │ │ ├── __init__.py │ │ ├── account_test.py │ │ ├── amount_test.py │ │ ├── balance_test.py │ │ ├── block_comment_test.py │ │ ├── bool_test.py │ │ ├── close_test.py │ │ ├── commodity_test.py │ │ ├── cost_spec_test.py │ │ ├── currency_test.py │ │ ├── custom_test.py │ │ ├── date_test.py │ │ ├── document_test.py │ │ ├── escaped_string_test.py │ │ ├── event_test.py │ │ ├── file_test.py │ │ ├── ignored_test.py │ │ ├── include_test.py │ │ ├── inline_comment_test.py │ │ ├── link_test.py │ │ ├── meta_item_test.py │ │ ├── meta_key_test.py │ │ ├── newline_test.py │ │ ├── note_test.py │ │ ├── null_test.py │ │ ├── number_expr_test.py │ │ ├── number_test.py │ │ ├── open_test.py │ │ ├── option_test.py │ │ ├── pad_test.py │ │ ├── plugin_test.py │ │ ├── popmeta_test.py │ │ ├── poptag_test.py │ │ ├── posting_flag_test.py │ │ ├── posting_test.py │ │ ├── price_test.py │ │ ├── pushmeta_test.py │ │ ├── pushtag_test.py │ │ ├── query_test.py │ │ ├── tag_test.py │ │ ├── tags_links_test.py │ │ ├── transaction_flag_test.py │ │ ├── transaction_test.py │ │ └── whitespace_test.py │ └── token_store_test.py └── token_store.py ├── docs ├── _config.yml ├── _extensions │ └── local.py ├── _static │ ├── custom.css │ └── wrap-parameters.css ├── _templates │ ├── model.rst │ └── type-alias.rst ├── _toc.yml ├── code │ ├── basics.py │ └── parsing.py ├── examples.md ├── generic │ ├── models.md │ ├── token-models.md │ └── tree-models.md ├── getting-started.md ├── guarantees.md ├── references │ ├── .gitignore │ ├── token-models.md │ ├── tree-models.md │ └── type-aliases.md └── special │ ├── comments.md │ ├── indents.md │ ├── meta.md │ ├── numbers.md │ ├── prices-costs.md │ └── spacing.md ├── pdm.lock └── pyproject.toml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/.gitignore -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/.mypy.ini -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/README.md -------------------------------------------------------------------------------- /autobean_refactor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/beancount.lark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/beancount.lark -------------------------------------------------------------------------------- /autobean_refactor/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/editor.py -------------------------------------------------------------------------------- /autobean_refactor/meta_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/meta_models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/meta_models/base.py -------------------------------------------------------------------------------- /autobean_refactor/meta_models/meta_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/meta_models/meta_models.py -------------------------------------------------------------------------------- /autobean_refactor/modelgen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/modelgen/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/modelgen/descriptor.py -------------------------------------------------------------------------------- /autobean_refactor/modelgen/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/modelgen/generate.py -------------------------------------------------------------------------------- /autobean_refactor/modelgen/modelgen_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/modelgen/modelgen_test.py -------------------------------------------------------------------------------- /autobean_refactor/modelgen/raw_model.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/modelgen/raw_model.mako -------------------------------------------------------------------------------- /autobean_refactor/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/__init__.py -------------------------------------------------------------------------------- /autobean_refactor/models/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/account.py -------------------------------------------------------------------------------- /autobean_refactor/models/amount.py: -------------------------------------------------------------------------------- 1 | from .generated.amount import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/balance.py: -------------------------------------------------------------------------------- 1 | from .generated.balance import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/base.py -------------------------------------------------------------------------------- /autobean_refactor/models/block_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/block_comment.py -------------------------------------------------------------------------------- /autobean_refactor/models/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/bool.py -------------------------------------------------------------------------------- /autobean_refactor/models/close.py: -------------------------------------------------------------------------------- 1 | from .generated.close import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/commodity.py: -------------------------------------------------------------------------------- 1 | from .generated.commodity import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/compound_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/compound_amount.py -------------------------------------------------------------------------------- /autobean_refactor/models/cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/cost.py -------------------------------------------------------------------------------- /autobean_refactor/models/cost_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/cost_component.py -------------------------------------------------------------------------------- /autobean_refactor/models/cost_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/cost_spec.py -------------------------------------------------------------------------------- /autobean_refactor/models/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/currency.py -------------------------------------------------------------------------------- /autobean_refactor/models/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/custom.py -------------------------------------------------------------------------------- /autobean_refactor/models/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/date.py -------------------------------------------------------------------------------- /autobean_refactor/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/document.py -------------------------------------------------------------------------------- /autobean_refactor/models/escaped_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/escaped_string.py -------------------------------------------------------------------------------- /autobean_refactor/models/event.py: -------------------------------------------------------------------------------- 1 | from .generated.event import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/file.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/models/generated/amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/amount.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/balance.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/close.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/commodity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/commodity.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/compound_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/compound_amount.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/cost_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/cost_spec.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/custom.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/document.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/event.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/file.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/ignored_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/ignored_line.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/include.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/meta_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/meta_item.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/note.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/number_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/number_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/number_paren_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/number_paren_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/number_unary_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/number_unary_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/open.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/option.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/pad.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/plugin.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/popmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/popmeta.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/poptag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/poptag.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/posting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/posting.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/price.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/pushmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/pushmeta.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/pushtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/pushtag.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/query.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/tolerance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/tolerance.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/total_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/total_cost.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/total_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/total_price.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/transaction.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/unit_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/unit_cost.py -------------------------------------------------------------------------------- /autobean_refactor/models/generated/unit_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/generated/unit_price.py -------------------------------------------------------------------------------- /autobean_refactor/models/ignored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/ignored.py -------------------------------------------------------------------------------- /autobean_refactor/models/ignored_line.py: -------------------------------------------------------------------------------- 1 | from .generated.ignored_line import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/include.py: -------------------------------------------------------------------------------- 1 | from .generated.include import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/inline_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/inline_comment.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/__init__.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/base_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/base_property.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/base_token_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/base_token_models.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/fields.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/indexes.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/interleaving_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/interleaving_comments.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/placeholder.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/properties.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/registry.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/repeated.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/spacing_accessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/spacing_accessors.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/surrounding_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/surrounding_comments.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/token_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/token_models.py -------------------------------------------------------------------------------- /autobean_refactor/models/internal/value_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/internal/value_properties.py -------------------------------------------------------------------------------- /autobean_refactor/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/link.py -------------------------------------------------------------------------------- /autobean_refactor/models/meta_item.py: -------------------------------------------------------------------------------- 1 | from .generated.meta_item import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/meta_item_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/meta_item_internal.py -------------------------------------------------------------------------------- /autobean_refactor/models/meta_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/meta_key.py -------------------------------------------------------------------------------- /autobean_refactor/models/meta_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/meta_value.py -------------------------------------------------------------------------------- /autobean_refactor/models/meta_value_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/meta_value_internal.py -------------------------------------------------------------------------------- /autobean_refactor/models/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/note.py -------------------------------------------------------------------------------- /autobean_refactor/models/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/null.py -------------------------------------------------------------------------------- /autobean_refactor/models/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number.py -------------------------------------------------------------------------------- /autobean_refactor/models/number_add_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number_add_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/number_atom_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number_atom_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/number_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/number_mul_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number_mul_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/number_paren_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number_paren_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/number_unary_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/number_unary_expr.py -------------------------------------------------------------------------------- /autobean_refactor/models/open.py: -------------------------------------------------------------------------------- 1 | from .generated.open import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/option.py: -------------------------------------------------------------------------------- 1 | from .generated.option import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/pad.py: -------------------------------------------------------------------------------- 1 | from .generated.pad import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/plugin.py: -------------------------------------------------------------------------------- 1 | from .generated.plugin import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/popmeta.py: -------------------------------------------------------------------------------- 1 | from .generated.popmeta import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/poptag.py: -------------------------------------------------------------------------------- 1 | from .generated.poptag import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/posting.py: -------------------------------------------------------------------------------- 1 | from .generated.posting import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/posting_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/posting_flag.py -------------------------------------------------------------------------------- /autobean_refactor/models/price.py: -------------------------------------------------------------------------------- 1 | from .generated.price import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/punctuation.py -------------------------------------------------------------------------------- /autobean_refactor/models/pushmeta.py: -------------------------------------------------------------------------------- 1 | from .generated.pushmeta import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/pushtag.py: -------------------------------------------------------------------------------- 1 | from .generated.pushtag import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/query.py: -------------------------------------------------------------------------------- 1 | from .generated.query import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/spacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/spacing.py -------------------------------------------------------------------------------- /autobean_refactor/models/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/tag.py -------------------------------------------------------------------------------- /autobean_refactor/models/tolerance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/tolerance.py -------------------------------------------------------------------------------- /autobean_refactor/models/total_price.py: -------------------------------------------------------------------------------- 1 | from .generated.total_price import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/models/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/transaction.py -------------------------------------------------------------------------------- /autobean_refactor/models/transaction_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/models/transaction_flag.py -------------------------------------------------------------------------------- /autobean_refactor/models/unit_price.py: -------------------------------------------------------------------------------- 1 | from .generated.unit_price import * 2 | -------------------------------------------------------------------------------- /autobean_refactor/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/parser.py -------------------------------------------------------------------------------- /autobean_refactor/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/printer.py -------------------------------------------------------------------------------- /autobean_refactor/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/base.py -------------------------------------------------------------------------------- /autobean_refactor/tests/benchmark/benchmark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/benchmark/benchmark_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/conftest.py -------------------------------------------------------------------------------- /autobean_refactor/tests/editor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/editor_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/auto_claim_comments_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/generic/auto_claim_comments_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/inline_comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/generic/inline_comment_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/interleaving_comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/generic/interleaving_comment_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/meta_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/generic/meta_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/spacing_accessors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/generic/spacing_accessors_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/generic/surrounding_comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/generic/surrounding_comment_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autobean_refactor/tests/models/account_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/account_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/amount_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/amount_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/balance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/balance_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/block_comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/block_comment_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/bool_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/bool_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/close_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/close_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/commodity_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/commodity_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/cost_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/cost_spec_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/currency_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/currency_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/custom_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/custom_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/date_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/date_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/document_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/document_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/escaped_string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/escaped_string_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/event_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/event_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/file_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/file_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/ignored_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/ignored_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/include_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/include_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/inline_comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/inline_comment_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/link_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/link_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/meta_item_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/meta_item_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/meta_key_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/meta_key_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/newline_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/newline_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/note_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/note_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/null_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/null_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/number_expr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/number_expr_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/number_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/number_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/open_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/open_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/option_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/option_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/pad_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/pad_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/plugin_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/popmeta_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/popmeta_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/poptag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/poptag_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/posting_flag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/posting_flag_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/posting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/posting_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/price_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/price_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/pushmeta_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/pushmeta_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/pushtag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/pushtag_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/query_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/tag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/tag_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/tags_links_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/tags_links_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/transaction_flag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/transaction_flag_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/transaction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/transaction_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/models/whitespace_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/models/whitespace_test.py -------------------------------------------------------------------------------- /autobean_refactor/tests/token_store_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/tests/token_store_test.py -------------------------------------------------------------------------------- /autobean_refactor/token_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/autobean_refactor/token_store.py -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_extensions/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/_extensions/local.py -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | .bd-main { 2 | flex-grow: 1 !important; 3 | } 4 | -------------------------------------------------------------------------------- /docs/_static/wrap-parameters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/_static/wrap-parameters.css -------------------------------------------------------------------------------- /docs/_templates/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/_templates/model.rst -------------------------------------------------------------------------------- /docs/_templates/type-alias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/_templates/type-alias.rst -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/code/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/code/basics.py -------------------------------------------------------------------------------- /docs/code/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/code/parsing.py -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/generic/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/generic/models.md -------------------------------------------------------------------------------- /docs/generic/token-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/generic/token-models.md -------------------------------------------------------------------------------- /docs/generic/tree-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/generic/tree-models.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/guarantees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/guarantees.md -------------------------------------------------------------------------------- /docs/references/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/references/.gitignore -------------------------------------------------------------------------------- /docs/references/token-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/references/token-models.md -------------------------------------------------------------------------------- /docs/references/tree-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/references/tree-models.md -------------------------------------------------------------------------------- /docs/references/type-aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/references/type-aliases.md -------------------------------------------------------------------------------- /docs/special/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/special/comments.md -------------------------------------------------------------------------------- /docs/special/indents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/special/indents.md -------------------------------------------------------------------------------- /docs/special/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/special/meta.md -------------------------------------------------------------------------------- /docs/special/numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/special/numbers.md -------------------------------------------------------------------------------- /docs/special/prices-costs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/special/prices-costs.md -------------------------------------------------------------------------------- /docs/special/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/docs/special/spacing.md -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEIAROTg/autobean-refactor/HEAD/pyproject.toml --------------------------------------------------------------------------------