lunchmoney-python-async 2.10.0__py3-none-any.whl

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.
Files changed (92) hide show
  1. lunchmoney/__init__.py +205 -0
  2. lunchmoney/api/__init__.py +16 -0
  3. lunchmoney/api/categories_api.py +1499 -0
  4. lunchmoney/api/manual_accounts_api.py +1479 -0
  5. lunchmoney/api/me_api.py +293 -0
  6. lunchmoney/api/plaid_accounts_api.py +909 -0
  7. lunchmoney/api/recurring_items_api.py +702 -0
  8. lunchmoney/api/summary_api.py +434 -0
  9. lunchmoney/api/tags_api.py +1465 -0
  10. lunchmoney/api/transactions_api.py +914 -0
  11. lunchmoney/api/transactions_bulk_api.py +1527 -0
  12. lunchmoney/api/transactions_files_api.py +891 -0
  13. lunchmoney/api/transactions_group_api.py +601 -0
  14. lunchmoney/api/transactions_split_api.py +616 -0
  15. lunchmoney/api_client.py +808 -0
  16. lunchmoney/api_response.py +21 -0
  17. lunchmoney/configuration.py +616 -0
  18. lunchmoney/exceptions.py +217 -0
  19. lunchmoney/models/__init__.py +84 -0
  20. lunchmoney/models/account_type_enum.py +46 -0
  21. lunchmoney/models/aligned_category_totals_object.py +108 -0
  22. lunchmoney/models/aligned_summary_category_object.py +110 -0
  23. lunchmoney/models/aligned_summary_response_object.py +104 -0
  24. lunchmoney/models/category_object.py +146 -0
  25. lunchmoney/models/child_category_object.py +141 -0
  26. lunchmoney/models/child_transaction_object.py +219 -0
  27. lunchmoney/models/create_category_request_object.py +137 -0
  28. lunchmoney/models/create_category_request_object_children_inner.py +159 -0
  29. lunchmoney/models/create_manual_account_request_object.py +138 -0
  30. lunchmoney/models/create_manual_account_request_object_balance.py +145 -0
  31. lunchmoney/models/create_new_transactions_request.py +103 -0
  32. lunchmoney/models/create_tag_request_object.py +112 -0
  33. lunchmoney/models/currency_enum.py +198 -0
  34. lunchmoney/models/delete_category_response_with_dependencies.py +94 -0
  35. lunchmoney/models/delete_category_response_with_dependencies_dependents.py +98 -0
  36. lunchmoney/models/delete_tag_response_with_dependencies.py +94 -0
  37. lunchmoney/models/delete_tag_response_with_dependencies_dependents.py +90 -0
  38. lunchmoney/models/delete_transactions_request.py +89 -0
  39. lunchmoney/models/error_response_object.py +98 -0
  40. lunchmoney/models/error_response_object_errors_inner.py +101 -0
  41. lunchmoney/models/get_all_categories200_response.py +96 -0
  42. lunchmoney/models/get_all_manual_accounts200_response.py +96 -0
  43. lunchmoney/models/get_all_plaid_accounts200_response.py +96 -0
  44. lunchmoney/models/get_all_recurring200_response.py +96 -0
  45. lunchmoney/models/get_all_tags200_response.py +96 -0
  46. lunchmoney/models/get_all_transactions200_response.py +100 -0
  47. lunchmoney/models/get_all_transactions_created_since_parameter.py +145 -0
  48. lunchmoney/models/get_budget_summary200_response.py +138 -0
  49. lunchmoney/models/get_transaction_attachment_url200_response.py +91 -0
  50. lunchmoney/models/group_transactions_request.py +122 -0
  51. lunchmoney/models/insert_transaction_object.py +164 -0
  52. lunchmoney/models/insert_transaction_object_amount.py +145 -0
  53. lunchmoney/models/insert_transactions_response_object.py +106 -0
  54. lunchmoney/models/manual_account_object.py +158 -0
  55. lunchmoney/models/non_aligned_category_totals_object.py +94 -0
  56. lunchmoney/models/non_aligned_summary_category_object.py +94 -0
  57. lunchmoney/models/non_aligned_summary_response_object.py +104 -0
  58. lunchmoney/models/plaid_account_object.py +168 -0
  59. lunchmoney/models/recurring_object.py +143 -0
  60. lunchmoney/models/recurring_object_matches.py +105 -0
  61. lunchmoney/models/recurring_object_matches_found_transactions_inner.py +91 -0
  62. lunchmoney/models/recurring_object_overrides.py +92 -0
  63. lunchmoney/models/recurring_object_transaction_criteria.py +149 -0
  64. lunchmoney/models/skipped_existing_external_id_object.py +108 -0
  65. lunchmoney/models/split_transaction_object.py +102 -0
  66. lunchmoney/models/split_transaction_object_amount.py +145 -0
  67. lunchmoney/models/split_transaction_request.py +97 -0
  68. lunchmoney/models/summary_category_occurrence_object.py +126 -0
  69. lunchmoney/models/summary_recurring_transaction_object.py +100 -0
  70. lunchmoney/models/summary_rollover_pool_adjustment_object.py +98 -0
  71. lunchmoney/models/summary_rollover_pool_object.py +98 -0
  72. lunchmoney/models/summary_totals_breakdown_object.py +98 -0
  73. lunchmoney/models/summary_totals_object.py +97 -0
  74. lunchmoney/models/tag_object.py +125 -0
  75. lunchmoney/models/transaction_attachment_object.py +106 -0
  76. lunchmoney/models/transaction_object.py +229 -0
  77. lunchmoney/models/update_category_request_object.py +156 -0
  78. lunchmoney/models/update_manual_account_request_object.py +156 -0
  79. lunchmoney/models/update_manual_account_request_object_balance.py +145 -0
  80. lunchmoney/models/update_tag_request_object.py +126 -0
  81. lunchmoney/models/update_transaction_object.py +228 -0
  82. lunchmoney/models/update_transaction_object_amount.py +145 -0
  83. lunchmoney/models/update_transactions200_response.py +96 -0
  84. lunchmoney/models/update_transactions_request.py +97 -0
  85. lunchmoney/models/update_transactions_request_transactions_inner.py +228 -0
  86. lunchmoney/models/user_object.py +106 -0
  87. lunchmoney/py.typed +0 -0
  88. lunchmoney/rest.py +195 -0
  89. lunchmoney_python_async-2.10.0.dist-info/METADATA +287 -0
  90. lunchmoney_python_async-2.10.0.dist-info/RECORD +92 -0
  91. lunchmoney_python_async-2.10.0.dist-info/WHEEL +5 -0
  92. lunchmoney_python_async-2.10.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,287 @@
1
+ Metadata-Version: 2.4
2
+ Name: lunchmoney-python-async
3
+ Version: 2.10.0
4
+ Summary: Lunch Money API - v2
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: OpenAPI Generator Community <devsupport@lunchmoney.app>
8
+ License: Apache 2.0
9
+ Project-URL: Repository, https://github.com/juftin/lunchmoney-clients
10
+ Keywords: OpenAPI,OpenAPI-Generator,Lunch Money API - v2
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
14
+ Requires-Dist: python-dateutil>=2.8.2
15
+ Requires-Dist: aiohttp>=3.8.4
16
+ Requires-Dist: aiohttp-retry>=2.8.3
17
+ Requires-Dist: pydantic>=2
18
+ Requires-Dist: typing-extensions>=4.7.1
19
+ Dynamic: author
20
+
21
+ # lunchmoney-python-async
22
+ Welcome to the Lunch Money v2 API.
23
+
24
+ A working version of this API is now available through these docs, or directly at:
25
+
26
+ `https://api.lunchmoney.dev/v2`
27
+
28
+ <span class=\"red-text\"><strong>This is in alpha launch of a major API update. It is still subject to change during this alpha review
29
+ period and bugs may still exist. Users are strongly encouraged to use the mock service or to create a test budget with example data as the first step to interacting with the v2 API.</strong></span>
30
+ See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<br<br>
31
+
32
+ If you are new to the v2 API, you may wish to review the [v2 API Overview of Changes](https://alpha.lunchmoney.dev/v2/changelog).
33
+
34
+ ### Static Mock Server
35
+
36
+ You may also use these docs to explore the API using a static mock server endpoint.<p>
37
+ This enables users to become familiar with the API without having to create an access token, and eliminates the possibility of modifying real data. <p>
38
+ To access this endpoint select the second endpoint in the the \"Server\" dropdown to the right. When selected you should see \"Static Mock v2 Lunch Money API Server\".<br>
39
+ When using this server, set your Bearer token to any string with 11 or more characters.
40
+
41
+ ### Migrating from V1
42
+
43
+ The v2 API is NOT backwards compatible with the v1 API. Developers are encouraged to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration.
44
+
45
+ ### Acknowledgments
46
+
47
+ If you have been providing feedback on the API during our iterative design process, **THANK YOU**. We are happy to provide the opportunity to finally interact with the working API that was built based on your feedback.
48
+
49
+ ### Useful links:
50
+ - [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started)
51
+ - [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog)
52
+ - [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide)
53
+ - [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits)
54
+ - [Current v1 Lunch Money API Documentation](https://lunchmoney.dev)
55
+ - [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
56
+
57
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
58
+
59
+ - API version: 2.8.4
60
+ - Package version: 2.10.0
61
+ - Generator version: 7.17.0
62
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
63
+
64
+ ## Requirements.
65
+
66
+ Python 3.9+
67
+
68
+ ## Installation & Usage
69
+ ### pip install
70
+
71
+ If the python package is hosted on a repository, you can install directly using:
72
+
73
+ ```sh
74
+ pip install git+https://github.com/juftin/lunchmoney-clients.git
75
+ ```
76
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/juftin/lunchmoney-clients.git`)
77
+
78
+ Then import the package:
79
+ ```python
80
+ import lunchmoney
81
+ ```
82
+
83
+ ### Setuptools
84
+
85
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
86
+
87
+ ```sh
88
+ python setup.py install --user
89
+ ```
90
+ (or `sudo python setup.py install` to install the package for all users)
91
+
92
+ Then import the package:
93
+ ```python
94
+ import lunchmoney
95
+ ```
96
+
97
+ ### Tests
98
+
99
+ Execute `pytest` to run the tests.
100
+
101
+ ## Getting Started
102
+
103
+ Please follow the [installation procedure](#installation--usage) and then run the following:
104
+
105
+ ```python
106
+
107
+ import lunchmoney
108
+ from lunchmoney.rest import ApiException
109
+ from pprint import pprint
110
+
111
+ # Defining the host is optional and defaults to https://api.lunchmoney.dev/v2
112
+ # See configuration.py for a list of all supported configuration parameters.
113
+ configuration = lunchmoney.Configuration(
114
+ host = "https://api.lunchmoney.dev/v2"
115
+ )
116
+
117
+ # The client must configure the authentication and authorization parameters
118
+ # in accordance with the API server security policy.
119
+ # Examples for each auth method are provided below, use the example that
120
+ # satisfies your auth use case.
121
+
122
+ # Configure API key authorization: cookieAuth
123
+ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
124
+
125
+ # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
126
+ # configuration.api_key_prefix['cookieAuth'] = 'Bearer'
127
+
128
+ # Configure Bearer authorization (JWT): bearerSecurity
129
+ configuration = lunchmoney.Configuration(
130
+ access_token = os.environ["BEARER_TOKEN"]
131
+ )
132
+
133
+
134
+ # Enter a context with an instance of the API client
135
+ async with lunchmoney.ApiClient(configuration) as api_client:
136
+ # Create an instance of the API class
137
+ api_instance = lunchmoney.CategoriesApi(api_client)
138
+ create_category_request_object = {"name":"API Created Category","description":"Test description of created category","is_income":false,"exclude_from_budget":true,"exclude_from_totals":false,"is_group":false} # CreateCategoryRequestObject |
139
+
140
+ try:
141
+ # Create a new category or category group
142
+ api_response = await api_instance.create_category(create_category_request_object)
143
+ print("The response of CategoriesApi->create_category:\n")
144
+ pprint(api_response)
145
+ except ApiException as e:
146
+ print("Exception when calling CategoriesApi->create_category: %s\n" % e)
147
+
148
+ ```
149
+
150
+ ## Documentation for API Endpoints
151
+
152
+ All URIs are relative to *https://api.lunchmoney.dev/v2*
153
+
154
+ Class | Method | HTTP request | Description
155
+ ------------ | ------------- | ------------- | -------------
156
+ *CategoriesApi* | [**create_category**](docs/CategoriesApi.md#create_category) | **POST** /categories | Create a new category or category group
157
+ *CategoriesApi* | [**delete_category**](docs/CategoriesApi.md#delete_category) | **DELETE** /categories/{id} | Delete a category or category group
158
+ *CategoriesApi* | [**get_all_categories**](docs/CategoriesApi.md#get_all_categories) | **GET** /categories | Get all categories
159
+ *CategoriesApi* | [**get_category_by_id**](docs/CategoriesApi.md#get_category_by_id) | **GET** /categories/{id} | Get a single category
160
+ *CategoriesApi* | [**update_category**](docs/CategoriesApi.md#update_category) | **PUT** /categories/{id} | Update an existing category or category group
161
+ *ManualAccountsApi* | [**create_manual_account**](docs/ManualAccountsApi.md#create_manual_account) | **POST** /manual_accounts | Create a manual account
162
+ *ManualAccountsApi* | [**delete_manual_account**](docs/ManualAccountsApi.md#delete_manual_account) | **DELETE** /manual_accounts/{id} | Delete a manual account
163
+ *ManualAccountsApi* | [**get_all_manual_accounts**](docs/ManualAccountsApi.md#get_all_manual_accounts) | **GET** /manual_accounts | Get all manual accounts
164
+ *ManualAccountsApi* | [**get_manual_account_by_id**](docs/ManualAccountsApi.md#get_manual_account_by_id) | **GET** /manual_accounts/{id} | Get a single manual account
165
+ *ManualAccountsApi* | [**update_manual_account**](docs/ManualAccountsApi.md#update_manual_account) | **PUT** /manual_accounts/{id} | Update an existing manual account
166
+ *MeApi* | [**get_me**](docs/MeApi.md#get_me) | **GET** /me | Get current user
167
+ *PlaidAccountsApi* | [**get_all_plaid_accounts**](docs/PlaidAccountsApi.md#get_all_plaid_accounts) | **GET** /plaid_accounts | Get all accounts synced via Plaid
168
+ *PlaidAccountsApi* | [**get_plaid_account_by_id**](docs/PlaidAccountsApi.md#get_plaid_account_by_id) | **GET** /plaid_accounts/{id} | Get a single account that is synced via Plaid
169
+ *PlaidAccountsApi* | [**trigger_plaid_account_fetch**](docs/PlaidAccountsApi.md#trigger_plaid_account_fetch) | **POST** /plaid_accounts/fetch | Trigger Fetch from Plaid
170
+ *RecurringItemsApi* | [**get_all_recurring**](docs/RecurringItemsApi.md#get_all_recurring) | **GET** /recurring_items | Get all recurring items
171
+ *RecurringItemsApi* | [**get_recurring_by_id**](docs/RecurringItemsApi.md#get_recurring_by_id) | **GET** /recurring_items/{id} | Get a single recurring item
172
+ *SummaryApi* | [**get_budget_summary**](docs/SummaryApi.md#get_budget_summary) | **GET** /summary | Get summary
173
+ *TagsApi* | [**create_tag**](docs/TagsApi.md#create_tag) | **POST** /tags | Create a new tag
174
+ *TagsApi* | [**delete_tag**](docs/TagsApi.md#delete_tag) | **DELETE** /tags/{id} | Delete a tag
175
+ *TagsApi* | [**get_all_tags**](docs/TagsApi.md#get_all_tags) | **GET** /tags | Get All Tags
176
+ *TagsApi* | [**get_tag_by_id**](docs/TagsApi.md#get_tag_by_id) | **GET** /tags/{id} | Get a single tag
177
+ *TagsApi* | [**update_tag**](docs/TagsApi.md#update_tag) | **PUT** /tags/{id} | Update an existing tag
178
+ *TransactionsApi* | [**delete_transaction_by_id**](docs/TransactionsApi.md#delete_transaction_by_id) | **DELETE** /transactions/{id} | Delete a transaction
179
+ *TransactionsApi* | [**get_transaction_by_id**](docs/TransactionsApi.md#get_transaction_by_id) | **GET** /transactions/{id} | Get a single transaction
180
+ *TransactionsApi* | [**update_transaction**](docs/TransactionsApi.md#update_transaction) | **PUT** /transactions/{id} | Update an existing transaction
181
+ *TransactionsBulkApi* | [**create_new_transactions**](docs/TransactionsBulkApi.md#create_new_transactions) | **POST** /transactions | Insert one or more transactions.
182
+ *TransactionsBulkApi* | [**delete_transactions**](docs/TransactionsBulkApi.md#delete_transactions) | **DELETE** /transactions | Bulk delete existing transactions
183
+ *TransactionsBulkApi* | [**get_all_transactions**](docs/TransactionsBulkApi.md#get_all_transactions) | **GET** /transactions | Get all transactions
184
+ *TransactionsBulkApi* | [**update_transactions**](docs/TransactionsBulkApi.md#update_transactions) | **PUT** /transactions | Update multiple transactions
185
+ *TransactionsFilesApi* | [**attach_file_to_transaction**](docs/TransactionsFilesApi.md#attach_file_to_transaction) | **POST** /transactions/{transaction_id}/attachments | Attach a file to a transaction
186
+ *TransactionsFilesApi* | [**delete_transaction_attachment**](docs/TransactionsFilesApi.md#delete_transaction_attachment) | **DELETE** /transactions/attachments/{file_id} | Delete a file attachment
187
+ *TransactionsFilesApi* | [**get_transaction_attachment_url**](docs/TransactionsFilesApi.md#get_transaction_attachment_url) | **GET** /transactions/attachments/{file_id} | Get a url to download a file attachment
188
+ *TransactionsGroupApi* | [**group_transactions**](docs/TransactionsGroupApi.md#group_transactions) | **POST** /transactions/group | Create a transaction group
189
+ *TransactionsGroupApi* | [**ungroup_transactions**](docs/TransactionsGroupApi.md#ungroup_transactions) | **DELETE** /transactions/group/{id} | Delete a transaction group
190
+ *TransactionsSplitApi* | [**split_transaction**](docs/TransactionsSplitApi.md#split_transaction) | **POST** /transactions/split/{id} | Split a transaction
191
+ *TransactionsSplitApi* | [**unsplit_transaction**](docs/TransactionsSplitApi.md#unsplit_transaction) | **DELETE** /transactions/split/{id} | Unsplit a previously split transactions
192
+
193
+
194
+ ## Documentation For Models
195
+
196
+ - [AccountTypeEnum](docs/AccountTypeEnum.md)
197
+ - [AlignedCategoryTotalsObject](docs/AlignedCategoryTotalsObject.md)
198
+ - [AlignedSummaryCategoryObject](docs/AlignedSummaryCategoryObject.md)
199
+ - [AlignedSummaryResponseObject](docs/AlignedSummaryResponseObject.md)
200
+ - [CategoryObject](docs/CategoryObject.md)
201
+ - [ChildCategoryObject](docs/ChildCategoryObject.md)
202
+ - [ChildTransactionObject](docs/ChildTransactionObject.md)
203
+ - [CreateCategoryRequestObject](docs/CreateCategoryRequestObject.md)
204
+ - [CreateCategoryRequestObjectChildrenInner](docs/CreateCategoryRequestObjectChildrenInner.md)
205
+ - [CreateManualAccountRequestObject](docs/CreateManualAccountRequestObject.md)
206
+ - [CreateManualAccountRequestObjectBalance](docs/CreateManualAccountRequestObjectBalance.md)
207
+ - [CreateNewTransactionsRequest](docs/CreateNewTransactionsRequest.md)
208
+ - [CreateTagRequestObject](docs/CreateTagRequestObject.md)
209
+ - [CurrencyEnum](docs/CurrencyEnum.md)
210
+ - [DeleteCategoryResponseWithDependencies](docs/DeleteCategoryResponseWithDependencies.md)
211
+ - [DeleteCategoryResponseWithDependenciesDependents](docs/DeleteCategoryResponseWithDependenciesDependents.md)
212
+ - [DeleteTagResponseWithDependencies](docs/DeleteTagResponseWithDependencies.md)
213
+ - [DeleteTagResponseWithDependenciesDependents](docs/DeleteTagResponseWithDependenciesDependents.md)
214
+ - [DeleteTransactionsRequest](docs/DeleteTransactionsRequest.md)
215
+ - [ErrorResponseObject](docs/ErrorResponseObject.md)
216
+ - [ErrorResponseObjectErrorsInner](docs/ErrorResponseObjectErrorsInner.md)
217
+ - [GetAllCategories200Response](docs/GetAllCategories200Response.md)
218
+ - [GetAllManualAccounts200Response](docs/GetAllManualAccounts200Response.md)
219
+ - [GetAllPlaidAccounts200Response](docs/GetAllPlaidAccounts200Response.md)
220
+ - [GetAllRecurring200Response](docs/GetAllRecurring200Response.md)
221
+ - [GetAllTags200Response](docs/GetAllTags200Response.md)
222
+ - [GetAllTransactions200Response](docs/GetAllTransactions200Response.md)
223
+ - [GetAllTransactionsCreatedSinceParameter](docs/GetAllTransactionsCreatedSinceParameter.md)
224
+ - [GetBudgetSummary200Response](docs/GetBudgetSummary200Response.md)
225
+ - [GetTransactionAttachmentUrl200Response](docs/GetTransactionAttachmentUrl200Response.md)
226
+ - [GroupTransactionsRequest](docs/GroupTransactionsRequest.md)
227
+ - [InsertTransactionObject](docs/InsertTransactionObject.md)
228
+ - [InsertTransactionObjectAmount](docs/InsertTransactionObjectAmount.md)
229
+ - [InsertTransactionsResponseObject](docs/InsertTransactionsResponseObject.md)
230
+ - [ManualAccountObject](docs/ManualAccountObject.md)
231
+ - [NonAlignedCategoryTotalsObject](docs/NonAlignedCategoryTotalsObject.md)
232
+ - [NonAlignedSummaryCategoryObject](docs/NonAlignedSummaryCategoryObject.md)
233
+ - [NonAlignedSummaryResponseObject](docs/NonAlignedSummaryResponseObject.md)
234
+ - [PlaidAccountObject](docs/PlaidAccountObject.md)
235
+ - [RecurringObject](docs/RecurringObject.md)
236
+ - [RecurringObjectMatches](docs/RecurringObjectMatches.md)
237
+ - [RecurringObjectMatchesFoundTransactionsInner](docs/RecurringObjectMatchesFoundTransactionsInner.md)
238
+ - [RecurringObjectOverrides](docs/RecurringObjectOverrides.md)
239
+ - [RecurringObjectTransactionCriteria](docs/RecurringObjectTransactionCriteria.md)
240
+ - [SkippedExistingExternalIdObject](docs/SkippedExistingExternalIdObject.md)
241
+ - [SplitTransactionObject](docs/SplitTransactionObject.md)
242
+ - [SplitTransactionObjectAmount](docs/SplitTransactionObjectAmount.md)
243
+ - [SplitTransactionRequest](docs/SplitTransactionRequest.md)
244
+ - [SummaryCategoryOccurrenceObject](docs/SummaryCategoryOccurrenceObject.md)
245
+ - [SummaryRecurringTransactionObject](docs/SummaryRecurringTransactionObject.md)
246
+ - [SummaryRolloverPoolAdjustmentObject](docs/SummaryRolloverPoolAdjustmentObject.md)
247
+ - [SummaryRolloverPoolObject](docs/SummaryRolloverPoolObject.md)
248
+ - [SummaryTotalsBreakdownObject](docs/SummaryTotalsBreakdownObject.md)
249
+ - [SummaryTotalsObject](docs/SummaryTotalsObject.md)
250
+ - [TagObject](docs/TagObject.md)
251
+ - [TransactionAttachmentObject](docs/TransactionAttachmentObject.md)
252
+ - [TransactionObject](docs/TransactionObject.md)
253
+ - [UpdateCategoryRequestObject](docs/UpdateCategoryRequestObject.md)
254
+ - [UpdateManualAccountRequestObject](docs/UpdateManualAccountRequestObject.md)
255
+ - [UpdateManualAccountRequestObjectBalance](docs/UpdateManualAccountRequestObjectBalance.md)
256
+ - [UpdateTagRequestObject](docs/UpdateTagRequestObject.md)
257
+ - [UpdateTransactionObject](docs/UpdateTransactionObject.md)
258
+ - [UpdateTransactionObjectAmount](docs/UpdateTransactionObjectAmount.md)
259
+ - [UpdateTransactions200Response](docs/UpdateTransactions200Response.md)
260
+ - [UpdateTransactionsRequest](docs/UpdateTransactionsRequest.md)
261
+ - [UpdateTransactionsRequestTransactionsInner](docs/UpdateTransactionsRequestTransactionsInner.md)
262
+ - [UserObject](docs/UserObject.md)
263
+
264
+
265
+ <a id="documentation-for-authorization"></a>
266
+ ## Documentation For Authorization
267
+
268
+
269
+ Authentication schemes defined for the API:
270
+ <a id="bearerSecurity"></a>
271
+ ### bearerSecurity
272
+
273
+ - **Type**: Bearer authentication (JWT)
274
+
275
+ <a id="cookieAuth"></a>
276
+ ### cookieAuth
277
+
278
+ - **Type**: API key
279
+ - **API key parameter name**: _lm_access_token
280
+ - **Location**:
281
+
282
+
283
+ ## Author
284
+
285
+ devsupport@lunchmoney.app
286
+
287
+
@@ -0,0 +1,92 @@
1
+ lunchmoney/__init__.py,sha256=8JTqDde-7OOrEwDYEyhREwCm4jdTpmDGKAwdcQ6Gb7s,15137
2
+ lunchmoney/api_client.py,sha256=CCcctyexJWpr8amwAlZGNgileERsyqQ237zqZwyo_uk,30027
3
+ lunchmoney/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ lunchmoney/configuration.py,sha256=fm3FMJ0MTnUc1lwFv6rBycZ8r2vilS-MiCz66dvnPrs,21495
5
+ lunchmoney/exceptions.py,sha256=wwqToE7BTr_gLnBIhciaFC3gcLWTgecvw_n-LczGluc,8624
6
+ lunchmoney/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ lunchmoney/rest.py,sha256=srXSZvn9tu3_g7brC3IewCwaGDj1LOlz4nJ1-mDTtyA,8448
8
+ lunchmoney/api/__init__.py,sha256=XmPdrjuhbFsbphTd0HDmZddVazKA8Qm8yQOMTuKNkD8,773
9
+ lunchmoney/api/categories_api.py,sha256=CmJzVk91HFlIZ2QiQEw56OIFE4-trZa9RQ8ZV3xvfSw,70725
10
+ lunchmoney/api/manual_accounts_api.py,sha256=h428zpxbNGCpQip2L-FAmrFD99H-ov6s_JB73RqH1rU,64562
11
+ lunchmoney/api/me_api.py,sha256=dxG_hJcfr1WqOETYvsB3mFRAqcvWKFgTMsDdE1BjrSw,12969
12
+ lunchmoney/api/plaid_accounts_api.py,sha256=7nOzDJYpGcdpeDzZuBDD91ugIeS9Cpp_0e8vcCMyLnQ,41833
13
+ lunchmoney/api/recurring_items_api.py,sha256=6Zs4wQBmKIX0ZMHEyEiaI50aSwr92YqX7Mybk0Q_X2Q,32804
14
+ lunchmoney/api/summary_api.py,sha256=hZ6PZS499hNWJYm8B_IFH_3estaX3XF1XGnqfxlgVeA,25292
15
+ lunchmoney/api/tags_api.py,sha256=CqWgqQOOkV0aTyvCL4UgSqAWA8Tuh1YyH3tf2IiJ-zY,60850
16
+ lunchmoney/api/transactions_api.py,sha256=ZKSVtG8gQ9FBTGuEJrCk5iKuxIy0wf1SEpclP-hqhmA,44644
17
+ lunchmoney/api/transactions_bulk_api.py,sha256=uv9FKMqVsNTxEm5vmSHvUscLjN6wFNYuPIBy9-NejDA,98392
18
+ lunchmoney/api/transactions_files_api.py,sha256=xTQ-BH0oYX7P_a2ZT7srHGmEWOn7ZJC2KjEzRY9hkvw,37587
19
+ lunchmoney/api/transactions_group_api.py,sha256=OD27MvUEkFXa3wcKGSvx7RuIz0O-Dd-WR7bKMq8_VmQ,28107
20
+ lunchmoney/api/transactions_split_api.py,sha256=gX6dC1W1eRZp2ogaWlKzlJMxDcUzirr8d-nm5Sj7F7A,27880
21
+ lunchmoney/models/__init__.py,sha256=ksmK0CbVzwgVqtSIS7klbmSFnS3P8Zqw7wT7uUSw4es,8542
22
+ lunchmoney/models/account_type_enum.py,sha256=OuOtaniU71C4ztwmIb5Wh7becHZk-4dEXeWMe-3L-Xg,3173
23
+ lunchmoney/models/aligned_category_totals_object.py,sha256=3zFOYZmcGC3UCYfQaIcqtqMG3B0_G6OdvdgQAxRDszE,6935
24
+ lunchmoney/models/aligned_summary_category_object.py,sha256=m4xWW4bS2TBjf7Mea__qFTtlH9HIoIlL7abRkyu8VmQ,6461
25
+ lunchmoney/models/aligned_summary_response_object.py,sha256=DaS0eCaupckXrMBHpLgUlapBHCjtlZ032yM-IemtNdA,5870
26
+ lunchmoney/models/category_object.py,sha256=dZl7HwtuMG2DracNFyzX3qk_Z2KyZm_mAW9aqOL2VXM,10007
27
+ lunchmoney/models/child_category_object.py,sha256=WAKv38AE3aYgcDLbbUQrTDx-fkuMkTezTmAc6jYvyPU,8776
28
+ lunchmoney/models/child_transaction_object.py,sha256=pnuxguhjPjU4_xRf9GwR0DLRIoL3Sv19jnMXLT30_6g,16920
29
+ lunchmoney/models/create_category_request_object.py,sha256=PrOyBUFDezJGfHt5HfhiQHc_WIJZyjAj47htE0IpydA,10261
30
+ lunchmoney/models/create_category_request_object_children_inner.py,sha256=Yw7YpYcCQBu_bVIbj8ScaHfEwqW_7DokW7HEnsHYBlE,8561
31
+ lunchmoney/models/create_manual_account_request_object.py,sha256=935vvM2Z3cSRHIlaFDPUkhl5mYxqRYFmaBCaet6OdVA,8957
32
+ lunchmoney/models/create_manual_account_request_object_balance.py,sha256=GoZKnGQ2wqlTH1asDRh2XZ4qGUbQJvsqASpyyMyk_uo,7839
33
+ lunchmoney/models/create_new_transactions_request.py,sha256=RpMEnfrtdLA4dIiZShY1_wwlgzbpu_Ue5xwU_YJoa50,6643
34
+ lunchmoney/models/create_tag_request_object.py,sha256=fCSY8Y_K596Nh9aIbfPACYeqmXeW9UtbFsmZCcpsLXc,6474
35
+ lunchmoney/models/currency_enum.py,sha256=oKZM8-tpY67ov5qLoSFIT55cRiypyjvgEExMNyH5I8U,5450
36
+ lunchmoney/models/delete_category_response_with_dependencies.py,sha256=otM6YZScc67O_c2eSytymLnIl8LSCNeFdrBDEgK0T08,5353
37
+ lunchmoney/models/delete_category_response_with_dependencies_dependents.py,sha256=_2Ssr3BVzrZ8ixKcWNNnAMjQECND8te4bZHbmZ1cyHk,5707
38
+ lunchmoney/models/delete_tag_response_with_dependencies.py,sha256=jt3IR1vJleePfgE1QeixeVAPC9XZnPEJrxA2lr0mnOk,5288
39
+ lunchmoney/models/delete_tag_response_with_dependencies_dependents.py,sha256=8fUR0WtXmkz0M_GL-NDgdyx0JIQheNjAZovzRrGR2TA,4976
40
+ lunchmoney/models/delete_transactions_request.py,sha256=bDI0msigHstNfKnp-eJ7mJw8uI2kYpN0T8UsynC1wPE,4833
41
+ lunchmoney/models/error_response_object.py,sha256=a7E6-85H5dS9AMQQ5xAG4KTZYKRlekOFXV9Eky7RjPs,5329
42
+ lunchmoney/models/error_response_object_errors_inner.py,sha256=E-Nmp9mY5BYXZweGGZyphCYjcyNMz87RL8WqeN2rId8,5368
43
+ lunchmoney/models/get_all_categories200_response.py,sha256=xAW54MfzL7B7ltto-cqSvOXpvhaZZibLEodNPAEAyNs,5229
44
+ lunchmoney/models/get_all_manual_accounts200_response.py,sha256=7bq8a64w3T2Myu2lKhIDVKU2IDw04ZxLuEqndbzn5PI,5326
45
+ lunchmoney/models/get_all_plaid_accounts200_response.py,sha256=slMmxsBqmZmHhEbBucHrRex8FFJOD6IBCRoIhonzuDU,5306
46
+ lunchmoney/models/get_all_recurring200_response.py,sha256=kkvecJAUI0ReyTqueXu3HCYzU9rzGRpUmlgQZ4I18A8,5289
47
+ lunchmoney/models/get_all_tags200_response.py,sha256=Y7GOalv_nlt6sE5TLR2zSWjLEMD6CA1SCxuUvuSxyxg,5113
48
+ lunchmoney/models/get_all_transactions200_response.py,sha256=EMkiNcEjD1kNyk6c-3-Pz3ROIt_SECie7j0j6j2aezc,5524
49
+ lunchmoney/models/get_all_transactions_created_since_parameter.py,sha256=eX5us1EYmkCzwrYocf8kFbDMnz0cski0Ug-n8iUq17M,7668
50
+ lunchmoney/models/get_budget_summary200_response.py,sha256=bDR76Vn9Pk506QasC2q_XW7fy_qzyx-5sEBmgBhUZVY,8096
51
+ lunchmoney/models/get_transaction_attachment_url200_response.py,sha256=P1qUeD6qmXQ735kcq7vSBvdGSB5ctQUKvsPFlcpj1vw,4980
52
+ lunchmoney/models/group_transactions_request.py,sha256=3nZVxO7Gou57nLwTSm4xrqjelL_WyGVGkLkCK_4Ee-A,7259
53
+ lunchmoney/models/insert_transaction_object.py,sha256=E2SgssjKDAhxWDx5sKYvmtHLvPQBL_35WsTaocIo3HM,11361
54
+ lunchmoney/models/insert_transaction_object_amount.py,sha256=h4KZVzMAJyhwZExYl6OyzKyQLOYpmk4Kx_NRvfuJ0wI,7826
55
+ lunchmoney/models/insert_transactions_response_object.py,sha256=zH7yZWuBaHJ_jNpboQVqFE5POkKCX2Y5zgT2MYTXpzY,6258
56
+ lunchmoney/models/manual_account_object.py,sha256=-wEH22ajgte9yMYqgsgzX2nsgn1W0K6KjbXfzV3m90I,9770
57
+ lunchmoney/models/non_aligned_category_totals_object.py,sha256=d_P1mPFULM7_dx7rFPOF7f2WnqcHzben3N-QpWe0KAQ,5980
58
+ lunchmoney/models/non_aligned_summary_category_object.py,sha256=i_Y7_3bd7czTT02l_yAjNpmalUOTgWvPg1WKOpD-UI4,5393
59
+ lunchmoney/models/non_aligned_summary_response_object.py,sha256=kkM11Pi8P0SOg4ZnfW0UG8J0EANjSV_FgZ9O4ylPRnk,5895
60
+ lunchmoney/models/plaid_account_object.py,sha256=VjnAIPjiDYWdFxwFzhGyatfwAN8CKz3nkUH1nVG7GkQ,11663
61
+ lunchmoney/models/recurring_object.py,sha256=boyWZcaYAr69tKfn4kSQFktFg_wD4XD4m4pThb2_C5E,8587
62
+ lunchmoney/models/recurring_object_matches.py,sha256=QikB-7VqiyGTKG_LnWyOEBea44dTKDnSBMVUrT1FSHY,6744
63
+ lunchmoney/models/recurring_object_matches_found_transactions_inner.py,sha256=7raM4NuK5rBW32w1oSTVKackVuWC6Bp65iMYCBFZwdA,5125
64
+ lunchmoney/models/recurring_object_overrides.py,sha256=1Vv28Y7HszaTIfdgq_VkV5gt2fpnlSqIfs89R0eP8Xo,5273
65
+ lunchmoney/models/recurring_object_transaction_criteria.py,sha256=Ixzjk3hotB_qR7rYbqIUs5Kqz9JrouFWSl0h-9Gxlx4,8862
66
+ lunchmoney/models/skipped_existing_external_id_object.py,sha256=p5u53zmF9L37IPiljczggNqkFWVPDVqMZDHIaHyuQWU,6782
67
+ lunchmoney/models/split_transaction_object.py,sha256=ujEWB2RLiv6EWf8SVcZkAbj8_d0TRUgVksbZXVlG33I,6091
68
+ lunchmoney/models/split_transaction_object_amount.py,sha256=3YS_4u-vPBQB7ZPUUvHpn1NZHvqBJNzG-91KAGZ2DTQ,7722
69
+ lunchmoney/models/split_transaction_request.py,sha256=khsqTj_WmYTt-njjsyzaCRKR1O9EtB3m3UZkA3lMtUU,5537
70
+ lunchmoney/models/summary_category_occurrence_object.py,sha256=mdJ6df4r6L9yR5ZfkpV7Q_x3Sba7RIce4Qo6heKIUsQ,7834
71
+ lunchmoney/models/summary_recurring_transaction_object.py,sha256=pd86W_ft9N8iJjlIAbHTBGB3Jya-uURuduQOHT7sLlk,5378
72
+ lunchmoney/models/summary_rollover_pool_adjustment_object.py,sha256=N2FBw1-rNtX2dhe7G3HbgS0zQjBM_FCjYnlq3JMbV4k,5628
73
+ lunchmoney/models/summary_rollover_pool_object.py,sha256=_ddvS4Uf0s78Q4VECojjpUcRfiDo6v8QQxauEpE2VM4,5822
74
+ lunchmoney/models/summary_totals_breakdown_object.py,sha256=dvR3pX1kOvrKHU035fbBM2ctI5Z-PQxSin2tBFC2cpI,6353
75
+ lunchmoney/models/summary_totals_object.py,sha256=GwKeJ-s9_ewM8Ck1Ezw6mlSs_pI1ydSdzjN5SDCpnBo,5493
76
+ lunchmoney/models/tag_object.py,sha256=6IU9kSxARYNFuTErW3j4IbgzOh0x6q_UsU2wvWhEh90,7059
77
+ lunchmoney/models/transaction_attachment_object.py,sha256=_1ee9_ncHh0kXE45oA3GoD1speGBSuRCPzmknV5wPzM,5977
78
+ lunchmoney/models/transaction_object.py,sha256=_ewTkg86BsBN7GqSKnL9r7qWz5WlOsZIeUhybOMfrYM,18616
79
+ lunchmoney/models/update_category_request_object.py,sha256=vp_BbyHKshT1QwOUcBWZUecIgYqjJblpQRxQEZoCmVA,11597
80
+ lunchmoney/models/update_manual_account_request_object.py,sha256=ZsE1GfSdAMkD-bzhCBJi3yy8XAy5uQKnpvnQA7f4S5o,10618
81
+ lunchmoney/models/update_manual_account_request_object_balance.py,sha256=QhSRQJPqPIMvXH5WNtlmT9V6r4yxKWIvgwGmTRSveiU,7846
82
+ lunchmoney/models/update_tag_request_object.py,sha256=NYOfACOB4UnmVrHjWxV2EJ6pD5tefggcLauele-ef4w,7408
83
+ lunchmoney/models/update_transaction_object.py,sha256=hjWxwAku1VjVYYNFBFxB-upE5K7wdFYo0et1y4ldmvI,16656
84
+ lunchmoney/models/update_transaction_object_amount.py,sha256=6Ud5i4q8X687rV_xnW3p2JjpJei7ohOAc0retkCRtVM,7966
85
+ lunchmoney/models/update_transactions200_response.py,sha256=M2EGiFnVSgVTZxxwpfSE32uMvQKom7irYHFIP-CJKLc,5246
86
+ lunchmoney/models/update_transactions_request.py,sha256=QFe3PXgGMyuD0fj7s5ZBKj_fwa9SmTig1EjC9bc-0mg,5570
87
+ lunchmoney/models/update_transactions_request_transactions_inner.py,sha256=l99tTbS64eraCuzpZWG0jRf069xIn08oha6PKezEysI,16674
88
+ lunchmoney/models/user_object.py,sha256=8Wz8vkuygfmkqJTu8hA-_l0usvkwvJMEyp7Wd7NYrzY,5899
89
+ lunchmoney_python_async-2.10.0.dist-info/METADATA,sha256=WkgdyYb9Ig-44G8rj_ybkmwuirTsuizKUvLj4NqQAyU,16481
90
+ lunchmoney_python_async-2.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
91
+ lunchmoney_python_async-2.10.0.dist-info/top_level.txt,sha256=zZag3NCnXp76Ay6xplmjroAfUH_hWWJzZNxTjxk3CdM,11
92
+ lunchmoney_python_async-2.10.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ lunchmoney