asyncio-for-ynab 1.83.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- asyncio_for_ynab-1.83.0/PKG-INFO +117 -0
- asyncio_for_ynab-1.83.0/README.md +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/__init__.py +310 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/__init__.py +14 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/accounts_api.py +893 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/categories_api.py +2421 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/money_movements_api.py +1125 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/months_api.py +600 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/payee_locations_api.py +860 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/payees_api.py +1201 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/plans_api.py +851 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/scheduled_transactions_api.py +1479 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/transactions_api.py +3448 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api/user_api.py +281 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api_client.py +811 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/api_response.py +21 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/configuration.py +603 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/exceptions.py +218 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/__init__.py +138 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/account.py +137 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/account_base.py +145 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/account_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/account_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/account_type.py +48 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/accounts_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/accounts_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/bulk_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/bulk_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/bulk_response_data_bulk.py +90 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/bulk_transactions.py +96 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/categories_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/categories_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/category.py +223 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/category_base.py +235 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/category_group.py +95 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/category_group_with_categories.py +105 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/category_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/category_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/currency_format.py +102 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/date_format.py +88 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/error_detail.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/error_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/existing_category.py +100 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/existing_transaction.py +126 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/hybrid_transaction.py +179 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/hybrid_transactions_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/hybrid_transactions_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movement.py +110 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movement_base.py +141 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movement_group.py +108 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movement_groups_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movement_groups_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movements_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/money_movements_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_detail.py +129 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_detail_base.py +113 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_detail_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_detail_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_summaries_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_summaries_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_summary.py +119 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/month_summary_base.py +113 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/new_category.py +100 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/new_transaction.py +133 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/patch_category_group_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/patch_category_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/patch_month_category_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/patch_payee_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/patch_transactions_wrapper.py +96 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee.py +100 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_location.py +97 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_location_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_location_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_locations_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_locations_response_data.py +96 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payee_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payees_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/payees_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_detail.py +210 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_detail_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_detail_response_data.py +94 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_settings.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_settings_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_settings_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_summary.py +120 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_summary_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/plan_summary_response_data.py +101 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_account_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_category_group_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_category_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_payee.py +89 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_payee_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_scheduled_transaction_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/post_transactions_wrapper.py +101 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/put_scheduled_transaction_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/put_transaction_wrapper.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_account.py +93 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_account_type.py +41 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_category.py +125 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_category_group.py +89 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_category_group_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_category_group_response_data.py +94 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_category_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_category_response_data.py +94 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_month_category.py +88 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_payee.py +89 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_payee_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_payee_response_data.py +94 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_scheduled_transaction.py +134 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_sub_transaction.py +118 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_transaction_with_id_or_import_id.py +140 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_transaction_with_optional_fields.py +146 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_transactions_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/save_transactions_response_data.py +107 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_sub_transaction.py +111 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_sub_transaction_base.py +137 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transaction_detail.py +157 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transaction_frequency.py +48 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transaction_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transaction_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transaction_summary.py +131 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transaction_summary_base.py +152 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transactions_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/scheduled_transactions_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/sub_transaction.py +113 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/sub_transaction_base.py +144 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_cleared_status.py +38 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_detail.py +178 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_flag_color.py +42 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_response_data.py +94 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_summary.py +152 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transaction_summary_base.py +198 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transactions_import_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transactions_import_response_data.py +88 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transactions_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/transactions_response_data.py +98 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/user.py +89 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/user_response.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/models/user_response_data.py +92 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/py.typed +0 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab/rest.py +199 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab.egg-info/PKG-INFO +117 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab.egg-info/SOURCES.txt +288 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab.egg-info/dependency_links.txt +1 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab.egg-info/requires.txt +11 -0
- asyncio_for_ynab-1.83.0/asyncio_for_ynab.egg-info/top_level.txt +3 -0
- asyncio_for_ynab-1.83.0/pyproject.toml +30 -0
- asyncio_for_ynab-1.83.0/setup.cfg +62 -0
- asyncio_for_ynab-1.83.0/test/__init__.py +0 -0
- asyncio_for_ynab-1.83.0/test/test_account.py +91 -0
- asyncio_for_ynab-1.83.0/test/test_account_base.py +85 -0
- asyncio_for_ynab-1.83.0/test/test_account_response.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_account_response_data.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_account_type.py +32 -0
- asyncio_for_ynab-1.83.0/test/test_accounts_api.py +51 -0
- asyncio_for_ynab-1.83.0/test/test_accounts_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_accounts_response_data.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_bulk_response.py +67 -0
- asyncio_for_ynab-1.83.0/test/test_bulk_response_data.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_bulk_response_data_bulk.py +63 -0
- asyncio_for_ynab-1.83.0/test/test_bulk_transactions.py +93 -0
- asyncio_for_ynab-1.83.0/test/test_categories_api.py +86 -0
- asyncio_for_ynab-1.83.0/test/test_categories_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_categories_response_data.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_category.py +99 -0
- asyncio_for_ynab-1.83.0/test/test_category_base.py +85 -0
- asyncio_for_ynab-1.83.0/test/test_category_group.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_category_group_with_categories.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_category_response.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_category_response_data.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_currency_format.py +67 -0
- asyncio_for_ynab-1.83.0/test/test_date_format.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_error_detail.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_error_response.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_existing_category.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_existing_transaction.py +69 -0
- asyncio_for_ynab-1.83.0/test/test_hybrid_transaction.py +86 -0
- asyncio_for_ynab-1.83.0/test/test_hybrid_transactions_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_hybrid_transactions_response_data.py +58 -0
- asyncio_for_ynab-1.83.0/test/test_money_movement.py +64 -0
- asyncio_for_ynab-1.83.0/test/test_money_movement_base.py +62 -0
- asyncio_for_ynab-1.83.0/test/test_money_movement_group.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_money_movement_groups_response.py +71 -0
- asyncio_for_ynab-1.83.0/test/test_money_movement_groups_response_data.py +69 -0
- asyncio_for_ynab-1.83.0/test/test_money_movements_api.py +58 -0
- asyncio_for_ynab-1.83.0/test/test_money_movements_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_money_movements_response_data.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_month_detail.py +79 -0
- asyncio_for_ynab-1.83.0/test/test_month_detail_base.py +123 -0
- asyncio_for_ynab-1.83.0/test/test_month_detail_response.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_month_detail_response_data.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_month_summaries_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_month_summaries_response_data.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_month_summary.py +73 -0
- asyncio_for_ynab-1.83.0/test/test_month_summary_base.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_months_api.py +44 -0
- asyncio_for_ynab-1.83.0/test/test_new_category.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_new_transaction.py +70 -0
- asyncio_for_ynab-1.83.0/test/test_patch_category_group_wrapper.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_patch_category_wrapper.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_patch_month_category_wrapper.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_patch_payee_wrapper.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_patch_transactions_wrapper.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_payee.py +58 -0
- asyncio_for_ynab-1.83.0/test/test_payee_location.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_payee_location_response.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_payee_location_response_data.py +63 -0
- asyncio_for_ynab-1.83.0/test/test_payee_locations_api.py +51 -0
- asyncio_for_ynab-1.83.0/test/test_payee_locations_response.py +69 -0
- asyncio_for_ynab-1.83.0/test/test_payee_locations_response_data.py +67 -0
- asyncio_for_ynab-1.83.0/test/test_payee_response.py +63 -0
- asyncio_for_ynab-1.83.0/test/test_payee_response_data.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_payees_api.py +58 -0
- asyncio_for_ynab-1.83.0/test/test_payees_response.py +69 -0
- asyncio_for_ynab-1.83.0/test/test_payees_response_data.py +67 -0
- asyncio_for_ynab-1.83.0/test/test_plan_detail.py +213 -0
- asyncio_for_ynab-1.83.0/test/test_plan_detail_response.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_plan_detail_response_data.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_plan_settings.py +73 -0
- asyncio_for_ynab-1.83.0/test/test_plan_settings_response.py +77 -0
- asyncio_for_ynab-1.83.0/test/test_plan_settings_response_data.py +75 -0
- asyncio_for_ynab-1.83.0/test/test_plan_summary.py +72 -0
- asyncio_for_ynab-1.83.0/test/test_plan_summary_response.py +99 -0
- asyncio_for_ynab-1.83.0/test/test_plan_summary_response_data.py +115 -0
- asyncio_for_ynab-1.83.0/test/test_plans_api.py +51 -0
- asyncio_for_ynab-1.83.0/test/test_post_account_wrapper.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_post_category_group_wrapper.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_post_category_wrapper.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_post_payee.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_post_payee_wrapper.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_post_scheduled_transaction_wrapper.py +71 -0
- asyncio_for_ynab-1.83.0/test/test_post_transactions_wrapper.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_put_scheduled_transaction_wrapper.py +71 -0
- asyncio_for_ynab-1.83.0/test/test_put_transaction_wrapper.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_save_account.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_save_account_type.py +32 -0
- asyncio_for_ynab-1.83.0/test/test_save_category.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_save_category_group.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_save_category_group_response.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_save_category_group_response_data.py +63 -0
- asyncio_for_ynab-1.83.0/test/test_save_category_response.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_save_category_response_data.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_save_month_category.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_save_payee.py +52 -0
- asyncio_for_ynab-1.83.0/test/test_save_payee_response.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_save_payee_response_data.py +63 -0
- asyncio_for_ynab-1.83.0/test/test_save_scheduled_transaction.py +62 -0
- asyncio_for_ynab-1.83.0/test/test_save_sub_transaction.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_save_transaction_with_id_or_import_id.py +71 -0
- asyncio_for_ynab-1.83.0/test/test_save_transaction_with_optional_fields.py +69 -0
- asyncio_for_ynab-1.83.0/test/test_save_transactions_response.py +75 -0
- asyncio_for_ynab-1.83.0/test/test_save_transactions_response_data.py +66 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_sub_transaction.py +67 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_sub_transaction_base.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transaction_detail.py +83 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transaction_frequency.py +32 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transaction_response.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transaction_response_data.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transaction_summary.py +73 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transaction_summary_base.py +71 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transactions_api.py +65 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transactions_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_scheduled_transactions_response_data.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_sub_transaction.py +68 -0
- asyncio_for_ynab-1.83.0/test/test_sub_transaction_base.py +66 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_cleared_status.py +32 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_detail.py +89 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_flag_color.py +32 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_response.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_response_data.py +55 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_summary.py +79 -0
- asyncio_for_ynab-1.83.0/test/test_transaction_summary_base.py +77 -0
- asyncio_for_ynab-1.83.0/test/test_transactions_api.py +107 -0
- asyncio_for_ynab-1.83.0/test/test_transactions_import_response.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_transactions_import_response_data.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_transactions_response.py +61 -0
- asyncio_for_ynab-1.83.0/test/test_transactions_response_data.py +59 -0
- asyncio_for_ynab-1.83.0/test/test_user.py +53 -0
- asyncio_for_ynab-1.83.0/test/test_user_api.py +37 -0
- asyncio_for_ynab-1.83.0/test/test_user_response.py +57 -0
- asyncio_for_ynab-1.83.0/test/test_user_response_data.py +55 -0
- asyncio_for_ynab-1.83.0/test_custom/__init__.py +150 -0
- asyncio_for_ynab-1.83.0/test_custom/test_generated_apis.py +120 -0
- asyncio_for_ynab-1.83.0/test_custom/test_generated_models.py +67 -0
- asyncio_for_ynab-1.83.0/test_custom/test_smoke.py +26 -0
- asyncio_for_ynab-1.83.0/test_custom/test_support_modules.py +581 -0
- asyncio_for_ynab-1.83.0/test_custom/test_test_helpers.py +85 -0
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asyncio_for_ynab
|
|
3
|
+
Version: 1.83.0
|
|
4
|
+
Summary: Unofficial asyncio client for the YNAB API.
|
|
5
|
+
Home-page: https://github.com/mxr/asyncio-for-ynab
|
|
6
|
+
Author: Max R
|
|
7
|
+
Author-email: mxr@users.noreply.github.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: ynab,budget,asyncio,openapi,httpx
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Requires-Dist: httpx>=0.28.1
|
|
16
|
+
Requires-Dist: pydantic>=2.11
|
|
17
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
18
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: aioresponses; extra == "dev"
|
|
21
|
+
Requires-Dist: covdefaults>=2.1.0; extra == "dev"
|
|
22
|
+
Requires-Dist: coverage; extra == "dev"
|
|
23
|
+
Requires-Dist: pytest; extra == "dev"
|
|
24
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
25
|
+
|
|
26
|
+
# asyncio-for-ynab
|
|
27
|
+
|
|
28
|
+
Asyncio client for the YNAB API.
|
|
29
|
+
|
|
30
|
+
This package is generated from the YNAB OpenAPI spec and uses the OpenAPI Generator Python `httpx` client.
|
|
31
|
+
|
|
32
|
+
This project is not affiliated with, endorsed by, or officially connected with YNAB.
|
|
33
|
+
|
|
34
|
+
## Install
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
python -m pip install asyncio-for-ynab
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
For local development:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
python -m pip install -e ".[dev]"
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Quick Start
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
import asyncio
|
|
50
|
+
|
|
51
|
+
from asyncio_for_ynab import ApiClient
|
|
52
|
+
from asyncio_for_ynab import Configuration
|
|
53
|
+
from asyncio_for_ynab import PlansApi
|
|
54
|
+
from asyncio_for_ynab import UserApi
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
async def main() -> None:
|
|
58
|
+
configuration = Configuration(access_token="your-access-token")
|
|
59
|
+
|
|
60
|
+
async with ApiClient(configuration) as api_client:
|
|
61
|
+
user_api = UserApi(api_client)
|
|
62
|
+
plans_api = PlansApi(api_client)
|
|
63
|
+
|
|
64
|
+
user = await user_api.get_user()
|
|
65
|
+
plans = await plans_api.get_plans()
|
|
66
|
+
|
|
67
|
+
print(user)
|
|
68
|
+
print(plans)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
asyncio.run(main())
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Common Patterns
|
|
75
|
+
|
|
76
|
+
Create a client once and pass it to any generated API class:
|
|
77
|
+
|
|
78
|
+
```python
|
|
79
|
+
from asyncio_for_ynab import AccountsApi
|
|
80
|
+
from asyncio_for_ynab import ApiClient
|
|
81
|
+
from asyncio_for_ynab import Configuration
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
configuration = Configuration(access_token="your-access-token")
|
|
85
|
+
|
|
86
|
+
async with ApiClient(configuration) as api_client:
|
|
87
|
+
accounts_api = AccountsApi(api_client)
|
|
88
|
+
accounts = await accounts_api.get_accounts()
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
The package also exports generated models, response objects, and exceptions at the top level:
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
from asyncio_for_ynab import AccountResponse
|
|
95
|
+
from asyncio_for_ynab import ApiException
|
|
96
|
+
from asyncio_for_ynab import TransactionResponse
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
## Development
|
|
100
|
+
|
|
101
|
+
Run the repository checks with pre-commit:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
pre-commit run --all-files
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Run the test suite:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
tox -e py
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Release Notes
|
|
114
|
+
|
|
115
|
+
Package versions mirror the YNAB API spec version.
|
|
116
|
+
|
|
117
|
+
For example, spec `1.83.0` is published as `asyncio-for-ynab==1.83.0`.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# asyncio-for-ynab
|
|
2
|
+
|
|
3
|
+
Asyncio client for the YNAB API.
|
|
4
|
+
|
|
5
|
+
This package is generated from the YNAB OpenAPI spec and uses the OpenAPI Generator Python `httpx` client.
|
|
6
|
+
|
|
7
|
+
This project is not affiliated with, endorsed by, or officially connected with YNAB.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
python -m pip install asyncio-for-ynab
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
For local development:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
python -m pip install -e ".[dev]"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
```python
|
|
24
|
+
import asyncio
|
|
25
|
+
|
|
26
|
+
from asyncio_for_ynab import ApiClient
|
|
27
|
+
from asyncio_for_ynab import Configuration
|
|
28
|
+
from asyncio_for_ynab import PlansApi
|
|
29
|
+
from asyncio_for_ynab import UserApi
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
async def main() -> None:
|
|
33
|
+
configuration = Configuration(access_token="your-access-token")
|
|
34
|
+
|
|
35
|
+
async with ApiClient(configuration) as api_client:
|
|
36
|
+
user_api = UserApi(api_client)
|
|
37
|
+
plans_api = PlansApi(api_client)
|
|
38
|
+
|
|
39
|
+
user = await user_api.get_user()
|
|
40
|
+
plans = await plans_api.get_plans()
|
|
41
|
+
|
|
42
|
+
print(user)
|
|
43
|
+
print(plans)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
asyncio.run(main())
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Common Patterns
|
|
50
|
+
|
|
51
|
+
Create a client once and pass it to any generated API class:
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
from asyncio_for_ynab import AccountsApi
|
|
55
|
+
from asyncio_for_ynab import ApiClient
|
|
56
|
+
from asyncio_for_ynab import Configuration
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
configuration = Configuration(access_token="your-access-token")
|
|
60
|
+
|
|
61
|
+
async with ApiClient(configuration) as api_client:
|
|
62
|
+
accounts_api = AccountsApi(api_client)
|
|
63
|
+
accounts = await accounts_api.get_accounts()
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
The package also exports generated models, response objects, and exceptions at the top level:
|
|
67
|
+
|
|
68
|
+
```python
|
|
69
|
+
from asyncio_for_ynab import AccountResponse
|
|
70
|
+
from asyncio_for_ynab import ApiException
|
|
71
|
+
from asyncio_for_ynab import TransactionResponse
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Development
|
|
75
|
+
|
|
76
|
+
Run the repository checks with pre-commit:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
pre-commit run --all-files
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Run the test suite:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
tox -e py
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Release Notes
|
|
89
|
+
|
|
90
|
+
Package versions mirror the YNAB API spec version.
|
|
91
|
+
|
|
92
|
+
For example, spec `1.83.0` is published as `asyncio-for-ynab==1.83.0`.
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
YNAB API Endpoints
|
|
7
|
+
|
|
8
|
+
Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.83.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "1.83.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"AccountsApi",
|
|
22
|
+
"CategoriesApi",
|
|
23
|
+
"MoneyMovementsApi",
|
|
24
|
+
"MonthsApi",
|
|
25
|
+
"PayeeLocationsApi",
|
|
26
|
+
"PayeesApi",
|
|
27
|
+
"PlansApi",
|
|
28
|
+
"ScheduledTransactionsApi",
|
|
29
|
+
"TransactionsApi",
|
|
30
|
+
"UserApi",
|
|
31
|
+
"ApiResponse",
|
|
32
|
+
"ApiClient",
|
|
33
|
+
"Configuration",
|
|
34
|
+
"OpenApiException",
|
|
35
|
+
"ApiTypeError",
|
|
36
|
+
"ApiValueError",
|
|
37
|
+
"ApiKeyError",
|
|
38
|
+
"ApiAttributeError",
|
|
39
|
+
"ApiException",
|
|
40
|
+
"Account",
|
|
41
|
+
"AccountBase",
|
|
42
|
+
"AccountResponse",
|
|
43
|
+
"AccountResponseData",
|
|
44
|
+
"AccountType",
|
|
45
|
+
"AccountsResponse",
|
|
46
|
+
"AccountsResponseData",
|
|
47
|
+
"BulkResponse",
|
|
48
|
+
"BulkResponseData",
|
|
49
|
+
"BulkResponseDataBulk",
|
|
50
|
+
"BulkTransactions",
|
|
51
|
+
"CategoriesResponse",
|
|
52
|
+
"CategoriesResponseData",
|
|
53
|
+
"Category",
|
|
54
|
+
"CategoryBase",
|
|
55
|
+
"CategoryGroup",
|
|
56
|
+
"CategoryGroupWithCategories",
|
|
57
|
+
"CategoryResponse",
|
|
58
|
+
"CategoryResponseData",
|
|
59
|
+
"CurrencyFormat",
|
|
60
|
+
"DateFormat",
|
|
61
|
+
"ErrorDetail",
|
|
62
|
+
"ErrorResponse",
|
|
63
|
+
"ExistingCategory",
|
|
64
|
+
"ExistingTransaction",
|
|
65
|
+
"HybridTransaction",
|
|
66
|
+
"HybridTransactionsResponse",
|
|
67
|
+
"HybridTransactionsResponseData",
|
|
68
|
+
"MoneyMovement",
|
|
69
|
+
"MoneyMovementBase",
|
|
70
|
+
"MoneyMovementGroup",
|
|
71
|
+
"MoneyMovementGroupsResponse",
|
|
72
|
+
"MoneyMovementGroupsResponseData",
|
|
73
|
+
"MoneyMovementsResponse",
|
|
74
|
+
"MoneyMovementsResponseData",
|
|
75
|
+
"MonthDetail",
|
|
76
|
+
"MonthDetailBase",
|
|
77
|
+
"MonthDetailResponse",
|
|
78
|
+
"MonthDetailResponseData",
|
|
79
|
+
"MonthSummariesResponse",
|
|
80
|
+
"MonthSummariesResponseData",
|
|
81
|
+
"MonthSummary",
|
|
82
|
+
"MonthSummaryBase",
|
|
83
|
+
"NewCategory",
|
|
84
|
+
"NewTransaction",
|
|
85
|
+
"PatchCategoryGroupWrapper",
|
|
86
|
+
"PatchCategoryWrapper",
|
|
87
|
+
"PatchMonthCategoryWrapper",
|
|
88
|
+
"PatchPayeeWrapper",
|
|
89
|
+
"PatchTransactionsWrapper",
|
|
90
|
+
"Payee",
|
|
91
|
+
"PayeeLocation",
|
|
92
|
+
"PayeeLocationResponse",
|
|
93
|
+
"PayeeLocationResponseData",
|
|
94
|
+
"PayeeLocationsResponse",
|
|
95
|
+
"PayeeLocationsResponseData",
|
|
96
|
+
"PayeeResponse",
|
|
97
|
+
"PayeeResponseData",
|
|
98
|
+
"PayeesResponse",
|
|
99
|
+
"PayeesResponseData",
|
|
100
|
+
"PlanDetail",
|
|
101
|
+
"PlanDetailResponse",
|
|
102
|
+
"PlanDetailResponseData",
|
|
103
|
+
"PlanSettings",
|
|
104
|
+
"PlanSettingsResponse",
|
|
105
|
+
"PlanSettingsResponseData",
|
|
106
|
+
"PlanSummary",
|
|
107
|
+
"PlanSummaryResponse",
|
|
108
|
+
"PlanSummaryResponseData",
|
|
109
|
+
"PostAccountWrapper",
|
|
110
|
+
"PostCategoryGroupWrapper",
|
|
111
|
+
"PostCategoryWrapper",
|
|
112
|
+
"PostPayee",
|
|
113
|
+
"PostPayeeWrapper",
|
|
114
|
+
"PostScheduledTransactionWrapper",
|
|
115
|
+
"PostTransactionsWrapper",
|
|
116
|
+
"PutScheduledTransactionWrapper",
|
|
117
|
+
"PutTransactionWrapper",
|
|
118
|
+
"SaveAccount",
|
|
119
|
+
"SaveAccountType",
|
|
120
|
+
"SaveCategory",
|
|
121
|
+
"SaveCategoryGroup",
|
|
122
|
+
"SaveCategoryGroupResponse",
|
|
123
|
+
"SaveCategoryGroupResponseData",
|
|
124
|
+
"SaveCategoryResponse",
|
|
125
|
+
"SaveCategoryResponseData",
|
|
126
|
+
"SaveMonthCategory",
|
|
127
|
+
"SavePayee",
|
|
128
|
+
"SavePayeeResponse",
|
|
129
|
+
"SavePayeeResponseData",
|
|
130
|
+
"SaveScheduledTransaction",
|
|
131
|
+
"SaveSubTransaction",
|
|
132
|
+
"SaveTransactionWithIdOrImportId",
|
|
133
|
+
"SaveTransactionWithOptionalFields",
|
|
134
|
+
"SaveTransactionsResponse",
|
|
135
|
+
"SaveTransactionsResponseData",
|
|
136
|
+
"ScheduledSubTransaction",
|
|
137
|
+
"ScheduledSubTransactionBase",
|
|
138
|
+
"ScheduledTransactionDetail",
|
|
139
|
+
"ScheduledTransactionFrequency",
|
|
140
|
+
"ScheduledTransactionResponse",
|
|
141
|
+
"ScheduledTransactionResponseData",
|
|
142
|
+
"ScheduledTransactionSummary",
|
|
143
|
+
"ScheduledTransactionSummaryBase",
|
|
144
|
+
"ScheduledTransactionsResponse",
|
|
145
|
+
"ScheduledTransactionsResponseData",
|
|
146
|
+
"SubTransaction",
|
|
147
|
+
"SubTransactionBase",
|
|
148
|
+
"TransactionClearedStatus",
|
|
149
|
+
"TransactionDetail",
|
|
150
|
+
"TransactionFlagColor",
|
|
151
|
+
"TransactionResponse",
|
|
152
|
+
"TransactionResponseData",
|
|
153
|
+
"TransactionSummary",
|
|
154
|
+
"TransactionSummaryBase",
|
|
155
|
+
"TransactionsImportResponse",
|
|
156
|
+
"TransactionsImportResponseData",
|
|
157
|
+
"TransactionsResponse",
|
|
158
|
+
"TransactionsResponseData",
|
|
159
|
+
"User",
|
|
160
|
+
"UserResponse",
|
|
161
|
+
"UserResponseData",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
# import apis into sdk package
|
|
165
|
+
from asyncio_for_ynab.api.accounts_api import AccountsApi as AccountsApi
|
|
166
|
+
from asyncio_for_ynab.api.categories_api import CategoriesApi as CategoriesApi
|
|
167
|
+
from asyncio_for_ynab.api.money_movements_api import MoneyMovementsApi as MoneyMovementsApi
|
|
168
|
+
from asyncio_for_ynab.api.months_api import MonthsApi as MonthsApi
|
|
169
|
+
from asyncio_for_ynab.api.payee_locations_api import PayeeLocationsApi as PayeeLocationsApi
|
|
170
|
+
from asyncio_for_ynab.api.payees_api import PayeesApi as PayeesApi
|
|
171
|
+
from asyncio_for_ynab.api.plans_api import PlansApi as PlansApi
|
|
172
|
+
from asyncio_for_ynab.api.scheduled_transactions_api import ScheduledTransactionsApi as ScheduledTransactionsApi
|
|
173
|
+
from asyncio_for_ynab.api.transactions_api import TransactionsApi as TransactionsApi
|
|
174
|
+
from asyncio_for_ynab.api.user_api import UserApi as UserApi
|
|
175
|
+
|
|
176
|
+
# import ApiClient
|
|
177
|
+
from asyncio_for_ynab.api_response import ApiResponse as ApiResponse
|
|
178
|
+
from asyncio_for_ynab.api_client import ApiClient as ApiClient
|
|
179
|
+
from asyncio_for_ynab.configuration import Configuration as Configuration
|
|
180
|
+
from asyncio_for_ynab.exceptions import OpenApiException as OpenApiException
|
|
181
|
+
from asyncio_for_ynab.exceptions import ApiTypeError as ApiTypeError
|
|
182
|
+
from asyncio_for_ynab.exceptions import ApiValueError as ApiValueError
|
|
183
|
+
from asyncio_for_ynab.exceptions import ApiKeyError as ApiKeyError
|
|
184
|
+
from asyncio_for_ynab.exceptions import ApiAttributeError as ApiAttributeError
|
|
185
|
+
from asyncio_for_ynab.exceptions import ApiException as ApiException
|
|
186
|
+
|
|
187
|
+
# import models into sdk package
|
|
188
|
+
from asyncio_for_ynab.models.account import Account as Account
|
|
189
|
+
from asyncio_for_ynab.models.account_base import AccountBase as AccountBase
|
|
190
|
+
from asyncio_for_ynab.models.account_response import AccountResponse as AccountResponse
|
|
191
|
+
from asyncio_for_ynab.models.account_response_data import AccountResponseData as AccountResponseData
|
|
192
|
+
from asyncio_for_ynab.models.account_type import AccountType as AccountType
|
|
193
|
+
from asyncio_for_ynab.models.accounts_response import AccountsResponse as AccountsResponse
|
|
194
|
+
from asyncio_for_ynab.models.accounts_response_data import AccountsResponseData as AccountsResponseData
|
|
195
|
+
from asyncio_for_ynab.models.bulk_response import BulkResponse as BulkResponse
|
|
196
|
+
from asyncio_for_ynab.models.bulk_response_data import BulkResponseData as BulkResponseData
|
|
197
|
+
from asyncio_for_ynab.models.bulk_response_data_bulk import BulkResponseDataBulk as BulkResponseDataBulk
|
|
198
|
+
from asyncio_for_ynab.models.bulk_transactions import BulkTransactions as BulkTransactions
|
|
199
|
+
from asyncio_for_ynab.models.categories_response import CategoriesResponse as CategoriesResponse
|
|
200
|
+
from asyncio_for_ynab.models.categories_response_data import CategoriesResponseData as CategoriesResponseData
|
|
201
|
+
from asyncio_for_ynab.models.category import Category as Category
|
|
202
|
+
from asyncio_for_ynab.models.category_base import CategoryBase as CategoryBase
|
|
203
|
+
from asyncio_for_ynab.models.category_group import CategoryGroup as CategoryGroup
|
|
204
|
+
from asyncio_for_ynab.models.category_group_with_categories import CategoryGroupWithCategories as CategoryGroupWithCategories
|
|
205
|
+
from asyncio_for_ynab.models.category_response import CategoryResponse as CategoryResponse
|
|
206
|
+
from asyncio_for_ynab.models.category_response_data import CategoryResponseData as CategoryResponseData
|
|
207
|
+
from asyncio_for_ynab.models.currency_format import CurrencyFormat as CurrencyFormat
|
|
208
|
+
from asyncio_for_ynab.models.date_format import DateFormat as DateFormat
|
|
209
|
+
from asyncio_for_ynab.models.error_detail import ErrorDetail as ErrorDetail
|
|
210
|
+
from asyncio_for_ynab.models.error_response import ErrorResponse as ErrorResponse
|
|
211
|
+
from asyncio_for_ynab.models.existing_category import ExistingCategory as ExistingCategory
|
|
212
|
+
from asyncio_for_ynab.models.existing_transaction import ExistingTransaction as ExistingTransaction
|
|
213
|
+
from asyncio_for_ynab.models.hybrid_transaction import HybridTransaction as HybridTransaction
|
|
214
|
+
from asyncio_for_ynab.models.hybrid_transactions_response import HybridTransactionsResponse as HybridTransactionsResponse
|
|
215
|
+
from asyncio_for_ynab.models.hybrid_transactions_response_data import HybridTransactionsResponseData as HybridTransactionsResponseData
|
|
216
|
+
from asyncio_for_ynab.models.money_movement import MoneyMovement as MoneyMovement
|
|
217
|
+
from asyncio_for_ynab.models.money_movement_base import MoneyMovementBase as MoneyMovementBase
|
|
218
|
+
from asyncio_for_ynab.models.money_movement_group import MoneyMovementGroup as MoneyMovementGroup
|
|
219
|
+
from asyncio_for_ynab.models.money_movement_groups_response import MoneyMovementGroupsResponse as MoneyMovementGroupsResponse
|
|
220
|
+
from asyncio_for_ynab.models.money_movement_groups_response_data import MoneyMovementGroupsResponseData as MoneyMovementGroupsResponseData
|
|
221
|
+
from asyncio_for_ynab.models.money_movements_response import MoneyMovementsResponse as MoneyMovementsResponse
|
|
222
|
+
from asyncio_for_ynab.models.money_movements_response_data import MoneyMovementsResponseData as MoneyMovementsResponseData
|
|
223
|
+
from asyncio_for_ynab.models.month_detail import MonthDetail as MonthDetail
|
|
224
|
+
from asyncio_for_ynab.models.month_detail_base import MonthDetailBase as MonthDetailBase
|
|
225
|
+
from asyncio_for_ynab.models.month_detail_response import MonthDetailResponse as MonthDetailResponse
|
|
226
|
+
from asyncio_for_ynab.models.month_detail_response_data import MonthDetailResponseData as MonthDetailResponseData
|
|
227
|
+
from asyncio_for_ynab.models.month_summaries_response import MonthSummariesResponse as MonthSummariesResponse
|
|
228
|
+
from asyncio_for_ynab.models.month_summaries_response_data import MonthSummariesResponseData as MonthSummariesResponseData
|
|
229
|
+
from asyncio_for_ynab.models.month_summary import MonthSummary as MonthSummary
|
|
230
|
+
from asyncio_for_ynab.models.month_summary_base import MonthSummaryBase as MonthSummaryBase
|
|
231
|
+
from asyncio_for_ynab.models.new_category import NewCategory as NewCategory
|
|
232
|
+
from asyncio_for_ynab.models.new_transaction import NewTransaction as NewTransaction
|
|
233
|
+
from asyncio_for_ynab.models.patch_category_group_wrapper import PatchCategoryGroupWrapper as PatchCategoryGroupWrapper
|
|
234
|
+
from asyncio_for_ynab.models.patch_category_wrapper import PatchCategoryWrapper as PatchCategoryWrapper
|
|
235
|
+
from asyncio_for_ynab.models.patch_month_category_wrapper import PatchMonthCategoryWrapper as PatchMonthCategoryWrapper
|
|
236
|
+
from asyncio_for_ynab.models.patch_payee_wrapper import PatchPayeeWrapper as PatchPayeeWrapper
|
|
237
|
+
from asyncio_for_ynab.models.patch_transactions_wrapper import PatchTransactionsWrapper as PatchTransactionsWrapper
|
|
238
|
+
from asyncio_for_ynab.models.payee import Payee as Payee
|
|
239
|
+
from asyncio_for_ynab.models.payee_location import PayeeLocation as PayeeLocation
|
|
240
|
+
from asyncio_for_ynab.models.payee_location_response import PayeeLocationResponse as PayeeLocationResponse
|
|
241
|
+
from asyncio_for_ynab.models.payee_location_response_data import PayeeLocationResponseData as PayeeLocationResponseData
|
|
242
|
+
from asyncio_for_ynab.models.payee_locations_response import PayeeLocationsResponse as PayeeLocationsResponse
|
|
243
|
+
from asyncio_for_ynab.models.payee_locations_response_data import PayeeLocationsResponseData as PayeeLocationsResponseData
|
|
244
|
+
from asyncio_for_ynab.models.payee_response import PayeeResponse as PayeeResponse
|
|
245
|
+
from asyncio_for_ynab.models.payee_response_data import PayeeResponseData as PayeeResponseData
|
|
246
|
+
from asyncio_for_ynab.models.payees_response import PayeesResponse as PayeesResponse
|
|
247
|
+
from asyncio_for_ynab.models.payees_response_data import PayeesResponseData as PayeesResponseData
|
|
248
|
+
from asyncio_for_ynab.models.plan_detail import PlanDetail as PlanDetail
|
|
249
|
+
from asyncio_for_ynab.models.plan_detail_response import PlanDetailResponse as PlanDetailResponse
|
|
250
|
+
from asyncio_for_ynab.models.plan_detail_response_data import PlanDetailResponseData as PlanDetailResponseData
|
|
251
|
+
from asyncio_for_ynab.models.plan_settings import PlanSettings as PlanSettings
|
|
252
|
+
from asyncio_for_ynab.models.plan_settings_response import PlanSettingsResponse as PlanSettingsResponse
|
|
253
|
+
from asyncio_for_ynab.models.plan_settings_response_data import PlanSettingsResponseData as PlanSettingsResponseData
|
|
254
|
+
from asyncio_for_ynab.models.plan_summary import PlanSummary as PlanSummary
|
|
255
|
+
from asyncio_for_ynab.models.plan_summary_response import PlanSummaryResponse as PlanSummaryResponse
|
|
256
|
+
from asyncio_for_ynab.models.plan_summary_response_data import PlanSummaryResponseData as PlanSummaryResponseData
|
|
257
|
+
from asyncio_for_ynab.models.post_account_wrapper import PostAccountWrapper as PostAccountWrapper
|
|
258
|
+
from asyncio_for_ynab.models.post_category_group_wrapper import PostCategoryGroupWrapper as PostCategoryGroupWrapper
|
|
259
|
+
from asyncio_for_ynab.models.post_category_wrapper import PostCategoryWrapper as PostCategoryWrapper
|
|
260
|
+
from asyncio_for_ynab.models.post_payee import PostPayee as PostPayee
|
|
261
|
+
from asyncio_for_ynab.models.post_payee_wrapper import PostPayeeWrapper as PostPayeeWrapper
|
|
262
|
+
from asyncio_for_ynab.models.post_scheduled_transaction_wrapper import PostScheduledTransactionWrapper as PostScheduledTransactionWrapper
|
|
263
|
+
from asyncio_for_ynab.models.post_transactions_wrapper import PostTransactionsWrapper as PostTransactionsWrapper
|
|
264
|
+
from asyncio_for_ynab.models.put_scheduled_transaction_wrapper import PutScheduledTransactionWrapper as PutScheduledTransactionWrapper
|
|
265
|
+
from asyncio_for_ynab.models.put_transaction_wrapper import PutTransactionWrapper as PutTransactionWrapper
|
|
266
|
+
from asyncio_for_ynab.models.save_account import SaveAccount as SaveAccount
|
|
267
|
+
from asyncio_for_ynab.models.save_account_type import SaveAccountType as SaveAccountType
|
|
268
|
+
from asyncio_for_ynab.models.save_category import SaveCategory as SaveCategory
|
|
269
|
+
from asyncio_for_ynab.models.save_category_group import SaveCategoryGroup as SaveCategoryGroup
|
|
270
|
+
from asyncio_for_ynab.models.save_category_group_response import SaveCategoryGroupResponse as SaveCategoryGroupResponse
|
|
271
|
+
from asyncio_for_ynab.models.save_category_group_response_data import SaveCategoryGroupResponseData as SaveCategoryGroupResponseData
|
|
272
|
+
from asyncio_for_ynab.models.save_category_response import SaveCategoryResponse as SaveCategoryResponse
|
|
273
|
+
from asyncio_for_ynab.models.save_category_response_data import SaveCategoryResponseData as SaveCategoryResponseData
|
|
274
|
+
from asyncio_for_ynab.models.save_month_category import SaveMonthCategory as SaveMonthCategory
|
|
275
|
+
from asyncio_for_ynab.models.save_payee import SavePayee as SavePayee
|
|
276
|
+
from asyncio_for_ynab.models.save_payee_response import SavePayeeResponse as SavePayeeResponse
|
|
277
|
+
from asyncio_for_ynab.models.save_payee_response_data import SavePayeeResponseData as SavePayeeResponseData
|
|
278
|
+
from asyncio_for_ynab.models.save_scheduled_transaction import SaveScheduledTransaction as SaveScheduledTransaction
|
|
279
|
+
from asyncio_for_ynab.models.save_sub_transaction import SaveSubTransaction as SaveSubTransaction
|
|
280
|
+
from asyncio_for_ynab.models.save_transaction_with_id_or_import_id import SaveTransactionWithIdOrImportId as SaveTransactionWithIdOrImportId
|
|
281
|
+
from asyncio_for_ynab.models.save_transaction_with_optional_fields import SaveTransactionWithOptionalFields as SaveTransactionWithOptionalFields
|
|
282
|
+
from asyncio_for_ynab.models.save_transactions_response import SaveTransactionsResponse as SaveTransactionsResponse
|
|
283
|
+
from asyncio_for_ynab.models.save_transactions_response_data import SaveTransactionsResponseData as SaveTransactionsResponseData
|
|
284
|
+
from asyncio_for_ynab.models.scheduled_sub_transaction import ScheduledSubTransaction as ScheduledSubTransaction
|
|
285
|
+
from asyncio_for_ynab.models.scheduled_sub_transaction_base import ScheduledSubTransactionBase as ScheduledSubTransactionBase
|
|
286
|
+
from asyncio_for_ynab.models.scheduled_transaction_detail import ScheduledTransactionDetail as ScheduledTransactionDetail
|
|
287
|
+
from asyncio_for_ynab.models.scheduled_transaction_frequency import ScheduledTransactionFrequency as ScheduledTransactionFrequency
|
|
288
|
+
from asyncio_for_ynab.models.scheduled_transaction_response import ScheduledTransactionResponse as ScheduledTransactionResponse
|
|
289
|
+
from asyncio_for_ynab.models.scheduled_transaction_response_data import ScheduledTransactionResponseData as ScheduledTransactionResponseData
|
|
290
|
+
from asyncio_for_ynab.models.scheduled_transaction_summary import ScheduledTransactionSummary as ScheduledTransactionSummary
|
|
291
|
+
from asyncio_for_ynab.models.scheduled_transaction_summary_base import ScheduledTransactionSummaryBase as ScheduledTransactionSummaryBase
|
|
292
|
+
from asyncio_for_ynab.models.scheduled_transactions_response import ScheduledTransactionsResponse as ScheduledTransactionsResponse
|
|
293
|
+
from asyncio_for_ynab.models.scheduled_transactions_response_data import ScheduledTransactionsResponseData as ScheduledTransactionsResponseData
|
|
294
|
+
from asyncio_for_ynab.models.sub_transaction import SubTransaction as SubTransaction
|
|
295
|
+
from asyncio_for_ynab.models.sub_transaction_base import SubTransactionBase as SubTransactionBase
|
|
296
|
+
from asyncio_for_ynab.models.transaction_cleared_status import TransactionClearedStatus as TransactionClearedStatus
|
|
297
|
+
from asyncio_for_ynab.models.transaction_detail import TransactionDetail as TransactionDetail
|
|
298
|
+
from asyncio_for_ynab.models.transaction_flag_color import TransactionFlagColor as TransactionFlagColor
|
|
299
|
+
from asyncio_for_ynab.models.transaction_response import TransactionResponse as TransactionResponse
|
|
300
|
+
from asyncio_for_ynab.models.transaction_response_data import TransactionResponseData as TransactionResponseData
|
|
301
|
+
from asyncio_for_ynab.models.transaction_summary import TransactionSummary as TransactionSummary
|
|
302
|
+
from asyncio_for_ynab.models.transaction_summary_base import TransactionSummaryBase as TransactionSummaryBase
|
|
303
|
+
from asyncio_for_ynab.models.transactions_import_response import TransactionsImportResponse as TransactionsImportResponse
|
|
304
|
+
from asyncio_for_ynab.models.transactions_import_response_data import TransactionsImportResponseData as TransactionsImportResponseData
|
|
305
|
+
from asyncio_for_ynab.models.transactions_response import TransactionsResponse as TransactionsResponse
|
|
306
|
+
from asyncio_for_ynab.models.transactions_response_data import TransactionsResponseData as TransactionsResponseData
|
|
307
|
+
from asyncio_for_ynab.models.user import User as User
|
|
308
|
+
from asyncio_for_ynab.models.user_response import UserResponse as UserResponse
|
|
309
|
+
from asyncio_for_ynab.models.user_response_data import UserResponseData as UserResponseData
|
|
310
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from asyncio_for_ynab.api.accounts_api import AccountsApi
|
|
5
|
+
from asyncio_for_ynab.api.categories_api import CategoriesApi
|
|
6
|
+
from asyncio_for_ynab.api.money_movements_api import MoneyMovementsApi
|
|
7
|
+
from asyncio_for_ynab.api.months_api import MonthsApi
|
|
8
|
+
from asyncio_for_ynab.api.payee_locations_api import PayeeLocationsApi
|
|
9
|
+
from asyncio_for_ynab.api.payees_api import PayeesApi
|
|
10
|
+
from asyncio_for_ynab.api.plans_api import PlansApi
|
|
11
|
+
from asyncio_for_ynab.api.scheduled_transactions_api import ScheduledTransactionsApi
|
|
12
|
+
from asyncio_for_ynab.api.transactions_api import TransactionsApi
|
|
13
|
+
from asyncio_for_ynab.api.user_api import UserApi
|
|
14
|
+
|