lunchmoney-python 2.9.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.
- lunchmoney/__init__.py +205 -0
- lunchmoney/api/__init__.py +16 -0
- lunchmoney/api/categories_api.py +1499 -0
- lunchmoney/api/manual_accounts_api.py +1479 -0
- lunchmoney/api/me_api.py +293 -0
- lunchmoney/api/plaid_accounts_api.py +909 -0
- lunchmoney/api/recurring_items_api.py +702 -0
- lunchmoney/api/summary_api.py +434 -0
- lunchmoney/api/tags_api.py +1465 -0
- lunchmoney/api/transactions_api.py +914 -0
- lunchmoney/api/transactions_bulk_api.py +1527 -0
- lunchmoney/api/transactions_files_api.py +891 -0
- lunchmoney/api/transactions_group_api.py +601 -0
- lunchmoney/api/transactions_split_api.py +616 -0
- lunchmoney/api_client.py +805 -0
- lunchmoney/api_response.py +21 -0
- lunchmoney/configuration.py +620 -0
- lunchmoney/exceptions.py +217 -0
- lunchmoney/models/__init__.py +84 -0
- lunchmoney/models/account_type_enum.py +46 -0
- lunchmoney/models/aligned_category_totals_object.py +108 -0
- lunchmoney/models/aligned_summary_category_object.py +110 -0
- lunchmoney/models/aligned_summary_response_object.py +104 -0
- lunchmoney/models/category_object.py +146 -0
- lunchmoney/models/child_category_object.py +141 -0
- lunchmoney/models/child_transaction_object.py +219 -0
- lunchmoney/models/create_category_request_object.py +137 -0
- lunchmoney/models/create_category_request_object_children_inner.py +159 -0
- lunchmoney/models/create_manual_account_request_object.py +138 -0
- lunchmoney/models/create_manual_account_request_object_balance.py +145 -0
- lunchmoney/models/create_new_transactions_request.py +103 -0
- lunchmoney/models/create_tag_request_object.py +112 -0
- lunchmoney/models/currency_enum.py +198 -0
- lunchmoney/models/delete_category_response_with_dependencies.py +94 -0
- lunchmoney/models/delete_category_response_with_dependencies_dependents.py +98 -0
- lunchmoney/models/delete_tag_response_with_dependencies.py +94 -0
- lunchmoney/models/delete_tag_response_with_dependencies_dependents.py +90 -0
- lunchmoney/models/delete_transactions_request.py +89 -0
- lunchmoney/models/error_response_object.py +98 -0
- lunchmoney/models/error_response_object_errors_inner.py +101 -0
- lunchmoney/models/get_all_categories200_response.py +96 -0
- lunchmoney/models/get_all_manual_accounts200_response.py +96 -0
- lunchmoney/models/get_all_plaid_accounts200_response.py +96 -0
- lunchmoney/models/get_all_recurring200_response.py +96 -0
- lunchmoney/models/get_all_tags200_response.py +96 -0
- lunchmoney/models/get_all_transactions200_response.py +100 -0
- lunchmoney/models/get_all_transactions_created_since_parameter.py +145 -0
- lunchmoney/models/get_budget_summary200_response.py +138 -0
- lunchmoney/models/get_transaction_attachment_url200_response.py +91 -0
- lunchmoney/models/group_transactions_request.py +122 -0
- lunchmoney/models/insert_transaction_object.py +164 -0
- lunchmoney/models/insert_transaction_object_amount.py +145 -0
- lunchmoney/models/insert_transactions_response_object.py +106 -0
- lunchmoney/models/manual_account_object.py +158 -0
- lunchmoney/models/non_aligned_category_totals_object.py +94 -0
- lunchmoney/models/non_aligned_summary_category_object.py +94 -0
- lunchmoney/models/non_aligned_summary_response_object.py +104 -0
- lunchmoney/models/plaid_account_object.py +168 -0
- lunchmoney/models/recurring_object.py +143 -0
- lunchmoney/models/recurring_object_matches.py +105 -0
- lunchmoney/models/recurring_object_matches_found_transactions_inner.py +91 -0
- lunchmoney/models/recurring_object_overrides.py +92 -0
- lunchmoney/models/recurring_object_transaction_criteria.py +149 -0
- lunchmoney/models/skipped_existing_external_id_object.py +108 -0
- lunchmoney/models/split_transaction_object.py +102 -0
- lunchmoney/models/split_transaction_object_amount.py +145 -0
- lunchmoney/models/split_transaction_request.py +97 -0
- lunchmoney/models/summary_category_occurrence_object.py +126 -0
- lunchmoney/models/summary_recurring_transaction_object.py +100 -0
- lunchmoney/models/summary_rollover_pool_adjustment_object.py +98 -0
- lunchmoney/models/summary_rollover_pool_object.py +98 -0
- lunchmoney/models/summary_totals_breakdown_object.py +98 -0
- lunchmoney/models/summary_totals_object.py +97 -0
- lunchmoney/models/tag_object.py +125 -0
- lunchmoney/models/transaction_attachment_object.py +106 -0
- lunchmoney/models/transaction_object.py +229 -0
- lunchmoney/models/update_category_request_object.py +156 -0
- lunchmoney/models/update_manual_account_request_object.py +156 -0
- lunchmoney/models/update_manual_account_request_object_balance.py +145 -0
- lunchmoney/models/update_tag_request_object.py +126 -0
- lunchmoney/models/update_transaction_object.py +228 -0
- lunchmoney/models/update_transaction_object_amount.py +145 -0
- lunchmoney/models/update_transactions200_response.py +96 -0
- lunchmoney/models/update_transactions_request.py +97 -0
- lunchmoney/models/update_transactions_request_transactions_inner.py +228 -0
- lunchmoney/models/user_object.py +106 -0
- lunchmoney/py.typed +0 -0
- lunchmoney/rest.py +259 -0
- lunchmoney_python-2.9.0.dist-info/METADATA +285 -0
- lunchmoney_python-2.9.0.dist-info/RECORD +92 -0
- lunchmoney_python-2.9.0.dist-info/WHEEL +5 -0
- lunchmoney_python-2.9.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lunchmoney-python
|
|
3
|
+
Version: 2.9.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: pydantic>=2
|
|
16
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
17
|
+
Dynamic: author
|
|
18
|
+
|
|
19
|
+
# lunchmoney-python
|
|
20
|
+
Welcome to the Lunch Money v2 API.
|
|
21
|
+
|
|
22
|
+
A working version of this API is now available through these docs, or directly at:
|
|
23
|
+
|
|
24
|
+
`https://api.lunchmoney.dev/v2`
|
|
25
|
+
|
|
26
|
+
<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
|
|
27
|
+
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>
|
|
28
|
+
See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<br<br>
|
|
29
|
+
|
|
30
|
+
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).
|
|
31
|
+
|
|
32
|
+
### Static Mock Server
|
|
33
|
+
|
|
34
|
+
You may also use these docs to explore the API using a static mock server endpoint.<p>
|
|
35
|
+
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>
|
|
36
|
+
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>
|
|
37
|
+
When using this server, set your Bearer token to any string with 11 or more characters.
|
|
38
|
+
|
|
39
|
+
### Migrating from V1
|
|
40
|
+
|
|
41
|
+
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.
|
|
42
|
+
|
|
43
|
+
### Acknowledgments
|
|
44
|
+
|
|
45
|
+
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.
|
|
46
|
+
|
|
47
|
+
### Useful links:
|
|
48
|
+
- [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started)
|
|
49
|
+
- [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog)
|
|
50
|
+
- [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide)
|
|
51
|
+
- [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits)
|
|
52
|
+
- [Current v1 Lunch Money API Documentation](https://lunchmoney.dev)
|
|
53
|
+
- [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
|
|
54
|
+
|
|
55
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
56
|
+
|
|
57
|
+
- API version: 2.8.4
|
|
58
|
+
- Package version: 2.9.0
|
|
59
|
+
- Generator version: 7.17.0
|
|
60
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
61
|
+
|
|
62
|
+
## Requirements.
|
|
63
|
+
|
|
64
|
+
Python 3.9+
|
|
65
|
+
|
|
66
|
+
## Installation & Usage
|
|
67
|
+
### pip install
|
|
68
|
+
|
|
69
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
70
|
+
|
|
71
|
+
```sh
|
|
72
|
+
pip install git+https://github.com/juftin/lunchmoney-clients.git
|
|
73
|
+
```
|
|
74
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/juftin/lunchmoney-clients.git`)
|
|
75
|
+
|
|
76
|
+
Then import the package:
|
|
77
|
+
```python
|
|
78
|
+
import lunchmoney
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Setuptools
|
|
82
|
+
|
|
83
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
84
|
+
|
|
85
|
+
```sh
|
|
86
|
+
python setup.py install --user
|
|
87
|
+
```
|
|
88
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
89
|
+
|
|
90
|
+
Then import the package:
|
|
91
|
+
```python
|
|
92
|
+
import lunchmoney
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Tests
|
|
96
|
+
|
|
97
|
+
Execute `pytest` to run the tests.
|
|
98
|
+
|
|
99
|
+
## Getting Started
|
|
100
|
+
|
|
101
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
102
|
+
|
|
103
|
+
```python
|
|
104
|
+
|
|
105
|
+
import lunchmoney
|
|
106
|
+
from lunchmoney.rest import ApiException
|
|
107
|
+
from pprint import pprint
|
|
108
|
+
|
|
109
|
+
# Defining the host is optional and defaults to https://api.lunchmoney.dev/v2
|
|
110
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
111
|
+
configuration = lunchmoney.Configuration(
|
|
112
|
+
host = "https://api.lunchmoney.dev/v2"
|
|
113
|
+
)
|
|
114
|
+
|
|
115
|
+
# The client must configure the authentication and authorization parameters
|
|
116
|
+
# in accordance with the API server security policy.
|
|
117
|
+
# Examples for each auth method are provided below, use the example that
|
|
118
|
+
# satisfies your auth use case.
|
|
119
|
+
|
|
120
|
+
# Configure API key authorization: cookieAuth
|
|
121
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
122
|
+
|
|
123
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
124
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
125
|
+
|
|
126
|
+
# Configure Bearer authorization (JWT): bearerSecurity
|
|
127
|
+
configuration = lunchmoney.Configuration(
|
|
128
|
+
access_token = os.environ["BEARER_TOKEN"]
|
|
129
|
+
)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
# Enter a context with an instance of the API client
|
|
133
|
+
with lunchmoney.ApiClient(configuration) as api_client:
|
|
134
|
+
# Create an instance of the API class
|
|
135
|
+
api_instance = lunchmoney.CategoriesApi(api_client)
|
|
136
|
+
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 |
|
|
137
|
+
|
|
138
|
+
try:
|
|
139
|
+
# Create a new category or category group
|
|
140
|
+
api_response = api_instance.create_category(create_category_request_object)
|
|
141
|
+
print("The response of CategoriesApi->create_category:\n")
|
|
142
|
+
pprint(api_response)
|
|
143
|
+
except ApiException as e:
|
|
144
|
+
print("Exception when calling CategoriesApi->create_category: %s\n" % e)
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
## Documentation for API Endpoints
|
|
149
|
+
|
|
150
|
+
All URIs are relative to *https://api.lunchmoney.dev/v2*
|
|
151
|
+
|
|
152
|
+
Class | Method | HTTP request | Description
|
|
153
|
+
------------ | ------------- | ------------- | -------------
|
|
154
|
+
*CategoriesApi* | [**create_category**](docs/CategoriesApi.md#create_category) | **POST** /categories | Create a new category or category group
|
|
155
|
+
*CategoriesApi* | [**delete_category**](docs/CategoriesApi.md#delete_category) | **DELETE** /categories/{id} | Delete a category or category group
|
|
156
|
+
*CategoriesApi* | [**get_all_categories**](docs/CategoriesApi.md#get_all_categories) | **GET** /categories | Get all categories
|
|
157
|
+
*CategoriesApi* | [**get_category_by_id**](docs/CategoriesApi.md#get_category_by_id) | **GET** /categories/{id} | Get a single category
|
|
158
|
+
*CategoriesApi* | [**update_category**](docs/CategoriesApi.md#update_category) | **PUT** /categories/{id} | Update an existing category or category group
|
|
159
|
+
*ManualAccountsApi* | [**create_manual_account**](docs/ManualAccountsApi.md#create_manual_account) | **POST** /manual_accounts | Create a manual account
|
|
160
|
+
*ManualAccountsApi* | [**delete_manual_account**](docs/ManualAccountsApi.md#delete_manual_account) | **DELETE** /manual_accounts/{id} | Delete a manual account
|
|
161
|
+
*ManualAccountsApi* | [**get_all_manual_accounts**](docs/ManualAccountsApi.md#get_all_manual_accounts) | **GET** /manual_accounts | Get all manual accounts
|
|
162
|
+
*ManualAccountsApi* | [**get_manual_account_by_id**](docs/ManualAccountsApi.md#get_manual_account_by_id) | **GET** /manual_accounts/{id} | Get a single manual account
|
|
163
|
+
*ManualAccountsApi* | [**update_manual_account**](docs/ManualAccountsApi.md#update_manual_account) | **PUT** /manual_accounts/{id} | Update an existing manual account
|
|
164
|
+
*MeApi* | [**get_me**](docs/MeApi.md#get_me) | **GET** /me | Get current user
|
|
165
|
+
*PlaidAccountsApi* | [**get_all_plaid_accounts**](docs/PlaidAccountsApi.md#get_all_plaid_accounts) | **GET** /plaid_accounts | Get all accounts synced via Plaid
|
|
166
|
+
*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
|
|
167
|
+
*PlaidAccountsApi* | [**trigger_plaid_account_fetch**](docs/PlaidAccountsApi.md#trigger_plaid_account_fetch) | **POST** /plaid_accounts/fetch | Trigger Fetch from Plaid
|
|
168
|
+
*RecurringItemsApi* | [**get_all_recurring**](docs/RecurringItemsApi.md#get_all_recurring) | **GET** /recurring_items | Get all recurring items
|
|
169
|
+
*RecurringItemsApi* | [**get_recurring_by_id**](docs/RecurringItemsApi.md#get_recurring_by_id) | **GET** /recurring_items/{id} | Get a single recurring item
|
|
170
|
+
*SummaryApi* | [**get_budget_summary**](docs/SummaryApi.md#get_budget_summary) | **GET** /summary | Get summary
|
|
171
|
+
*TagsApi* | [**create_tag**](docs/TagsApi.md#create_tag) | **POST** /tags | Create a new tag
|
|
172
|
+
*TagsApi* | [**delete_tag**](docs/TagsApi.md#delete_tag) | **DELETE** /tags/{id} | Delete a tag
|
|
173
|
+
*TagsApi* | [**get_all_tags**](docs/TagsApi.md#get_all_tags) | **GET** /tags | Get All Tags
|
|
174
|
+
*TagsApi* | [**get_tag_by_id**](docs/TagsApi.md#get_tag_by_id) | **GET** /tags/{id} | Get a single tag
|
|
175
|
+
*TagsApi* | [**update_tag**](docs/TagsApi.md#update_tag) | **PUT** /tags/{id} | Update an existing tag
|
|
176
|
+
*TransactionsApi* | [**delete_transaction_by_id**](docs/TransactionsApi.md#delete_transaction_by_id) | **DELETE** /transactions/{id} | Delete a transaction
|
|
177
|
+
*TransactionsApi* | [**get_transaction_by_id**](docs/TransactionsApi.md#get_transaction_by_id) | **GET** /transactions/{id} | Get a single transaction
|
|
178
|
+
*TransactionsApi* | [**update_transaction**](docs/TransactionsApi.md#update_transaction) | **PUT** /transactions/{id} | Update an existing transaction
|
|
179
|
+
*TransactionsBulkApi* | [**create_new_transactions**](docs/TransactionsBulkApi.md#create_new_transactions) | **POST** /transactions | Insert one or more transactions.
|
|
180
|
+
*TransactionsBulkApi* | [**delete_transactions**](docs/TransactionsBulkApi.md#delete_transactions) | **DELETE** /transactions | Bulk delete existing transactions
|
|
181
|
+
*TransactionsBulkApi* | [**get_all_transactions**](docs/TransactionsBulkApi.md#get_all_transactions) | **GET** /transactions | Get all transactions
|
|
182
|
+
*TransactionsBulkApi* | [**update_transactions**](docs/TransactionsBulkApi.md#update_transactions) | **PUT** /transactions | Update multiple transactions
|
|
183
|
+
*TransactionsFilesApi* | [**attach_file_to_transaction**](docs/TransactionsFilesApi.md#attach_file_to_transaction) | **POST** /transactions/{transaction_id}/attachments | Attach a file to a transaction
|
|
184
|
+
*TransactionsFilesApi* | [**delete_transaction_attachment**](docs/TransactionsFilesApi.md#delete_transaction_attachment) | **DELETE** /transactions/attachments/{file_id} | Delete a file attachment
|
|
185
|
+
*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
|
|
186
|
+
*TransactionsGroupApi* | [**group_transactions**](docs/TransactionsGroupApi.md#group_transactions) | **POST** /transactions/group | Create a transaction group
|
|
187
|
+
*TransactionsGroupApi* | [**ungroup_transactions**](docs/TransactionsGroupApi.md#ungroup_transactions) | **DELETE** /transactions/group/{id} | Delete a transaction group
|
|
188
|
+
*TransactionsSplitApi* | [**split_transaction**](docs/TransactionsSplitApi.md#split_transaction) | **POST** /transactions/split/{id} | Split a transaction
|
|
189
|
+
*TransactionsSplitApi* | [**unsplit_transaction**](docs/TransactionsSplitApi.md#unsplit_transaction) | **DELETE** /transactions/split/{id} | Unsplit a previously split transactions
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
## Documentation For Models
|
|
193
|
+
|
|
194
|
+
- [AccountTypeEnum](docs/AccountTypeEnum.md)
|
|
195
|
+
- [AlignedCategoryTotalsObject](docs/AlignedCategoryTotalsObject.md)
|
|
196
|
+
- [AlignedSummaryCategoryObject](docs/AlignedSummaryCategoryObject.md)
|
|
197
|
+
- [AlignedSummaryResponseObject](docs/AlignedSummaryResponseObject.md)
|
|
198
|
+
- [CategoryObject](docs/CategoryObject.md)
|
|
199
|
+
- [ChildCategoryObject](docs/ChildCategoryObject.md)
|
|
200
|
+
- [ChildTransactionObject](docs/ChildTransactionObject.md)
|
|
201
|
+
- [CreateCategoryRequestObject](docs/CreateCategoryRequestObject.md)
|
|
202
|
+
- [CreateCategoryRequestObjectChildrenInner](docs/CreateCategoryRequestObjectChildrenInner.md)
|
|
203
|
+
- [CreateManualAccountRequestObject](docs/CreateManualAccountRequestObject.md)
|
|
204
|
+
- [CreateManualAccountRequestObjectBalance](docs/CreateManualAccountRequestObjectBalance.md)
|
|
205
|
+
- [CreateNewTransactionsRequest](docs/CreateNewTransactionsRequest.md)
|
|
206
|
+
- [CreateTagRequestObject](docs/CreateTagRequestObject.md)
|
|
207
|
+
- [CurrencyEnum](docs/CurrencyEnum.md)
|
|
208
|
+
- [DeleteCategoryResponseWithDependencies](docs/DeleteCategoryResponseWithDependencies.md)
|
|
209
|
+
- [DeleteCategoryResponseWithDependenciesDependents](docs/DeleteCategoryResponseWithDependenciesDependents.md)
|
|
210
|
+
- [DeleteTagResponseWithDependencies](docs/DeleteTagResponseWithDependencies.md)
|
|
211
|
+
- [DeleteTagResponseWithDependenciesDependents](docs/DeleteTagResponseWithDependenciesDependents.md)
|
|
212
|
+
- [DeleteTransactionsRequest](docs/DeleteTransactionsRequest.md)
|
|
213
|
+
- [ErrorResponseObject](docs/ErrorResponseObject.md)
|
|
214
|
+
- [ErrorResponseObjectErrorsInner](docs/ErrorResponseObjectErrorsInner.md)
|
|
215
|
+
- [GetAllCategories200Response](docs/GetAllCategories200Response.md)
|
|
216
|
+
- [GetAllManualAccounts200Response](docs/GetAllManualAccounts200Response.md)
|
|
217
|
+
- [GetAllPlaidAccounts200Response](docs/GetAllPlaidAccounts200Response.md)
|
|
218
|
+
- [GetAllRecurring200Response](docs/GetAllRecurring200Response.md)
|
|
219
|
+
- [GetAllTags200Response](docs/GetAllTags200Response.md)
|
|
220
|
+
- [GetAllTransactions200Response](docs/GetAllTransactions200Response.md)
|
|
221
|
+
- [GetAllTransactionsCreatedSinceParameter](docs/GetAllTransactionsCreatedSinceParameter.md)
|
|
222
|
+
- [GetBudgetSummary200Response](docs/GetBudgetSummary200Response.md)
|
|
223
|
+
- [GetTransactionAttachmentUrl200Response](docs/GetTransactionAttachmentUrl200Response.md)
|
|
224
|
+
- [GroupTransactionsRequest](docs/GroupTransactionsRequest.md)
|
|
225
|
+
- [InsertTransactionObject](docs/InsertTransactionObject.md)
|
|
226
|
+
- [InsertTransactionObjectAmount](docs/InsertTransactionObjectAmount.md)
|
|
227
|
+
- [InsertTransactionsResponseObject](docs/InsertTransactionsResponseObject.md)
|
|
228
|
+
- [ManualAccountObject](docs/ManualAccountObject.md)
|
|
229
|
+
- [NonAlignedCategoryTotalsObject](docs/NonAlignedCategoryTotalsObject.md)
|
|
230
|
+
- [NonAlignedSummaryCategoryObject](docs/NonAlignedSummaryCategoryObject.md)
|
|
231
|
+
- [NonAlignedSummaryResponseObject](docs/NonAlignedSummaryResponseObject.md)
|
|
232
|
+
- [PlaidAccountObject](docs/PlaidAccountObject.md)
|
|
233
|
+
- [RecurringObject](docs/RecurringObject.md)
|
|
234
|
+
- [RecurringObjectMatches](docs/RecurringObjectMatches.md)
|
|
235
|
+
- [RecurringObjectMatchesFoundTransactionsInner](docs/RecurringObjectMatchesFoundTransactionsInner.md)
|
|
236
|
+
- [RecurringObjectOverrides](docs/RecurringObjectOverrides.md)
|
|
237
|
+
- [RecurringObjectTransactionCriteria](docs/RecurringObjectTransactionCriteria.md)
|
|
238
|
+
- [SkippedExistingExternalIdObject](docs/SkippedExistingExternalIdObject.md)
|
|
239
|
+
- [SplitTransactionObject](docs/SplitTransactionObject.md)
|
|
240
|
+
- [SplitTransactionObjectAmount](docs/SplitTransactionObjectAmount.md)
|
|
241
|
+
- [SplitTransactionRequest](docs/SplitTransactionRequest.md)
|
|
242
|
+
- [SummaryCategoryOccurrenceObject](docs/SummaryCategoryOccurrenceObject.md)
|
|
243
|
+
- [SummaryRecurringTransactionObject](docs/SummaryRecurringTransactionObject.md)
|
|
244
|
+
- [SummaryRolloverPoolAdjustmentObject](docs/SummaryRolloverPoolAdjustmentObject.md)
|
|
245
|
+
- [SummaryRolloverPoolObject](docs/SummaryRolloverPoolObject.md)
|
|
246
|
+
- [SummaryTotalsBreakdownObject](docs/SummaryTotalsBreakdownObject.md)
|
|
247
|
+
- [SummaryTotalsObject](docs/SummaryTotalsObject.md)
|
|
248
|
+
- [TagObject](docs/TagObject.md)
|
|
249
|
+
- [TransactionAttachmentObject](docs/TransactionAttachmentObject.md)
|
|
250
|
+
- [TransactionObject](docs/TransactionObject.md)
|
|
251
|
+
- [UpdateCategoryRequestObject](docs/UpdateCategoryRequestObject.md)
|
|
252
|
+
- [UpdateManualAccountRequestObject](docs/UpdateManualAccountRequestObject.md)
|
|
253
|
+
- [UpdateManualAccountRequestObjectBalance](docs/UpdateManualAccountRequestObjectBalance.md)
|
|
254
|
+
- [UpdateTagRequestObject](docs/UpdateTagRequestObject.md)
|
|
255
|
+
- [UpdateTransactionObject](docs/UpdateTransactionObject.md)
|
|
256
|
+
- [UpdateTransactionObjectAmount](docs/UpdateTransactionObjectAmount.md)
|
|
257
|
+
- [UpdateTransactions200Response](docs/UpdateTransactions200Response.md)
|
|
258
|
+
- [UpdateTransactionsRequest](docs/UpdateTransactionsRequest.md)
|
|
259
|
+
- [UpdateTransactionsRequestTransactionsInner](docs/UpdateTransactionsRequestTransactionsInner.md)
|
|
260
|
+
- [UserObject](docs/UserObject.md)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
<a id="documentation-for-authorization"></a>
|
|
264
|
+
## Documentation For Authorization
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
Authentication schemes defined for the API:
|
|
268
|
+
<a id="bearerSecurity"></a>
|
|
269
|
+
### bearerSecurity
|
|
270
|
+
|
|
271
|
+
- **Type**: Bearer authentication (JWT)
|
|
272
|
+
|
|
273
|
+
<a id="cookieAuth"></a>
|
|
274
|
+
### cookieAuth
|
|
275
|
+
|
|
276
|
+
- **Type**: API key
|
|
277
|
+
- **API key parameter name**: _lm_access_token
|
|
278
|
+
- **Location**:
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
## Author
|
|
282
|
+
|
|
283
|
+
devsupport@lunchmoney.app
|
|
284
|
+
|
|
285
|
+
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
lunchmoney/__init__.py,sha256=L3GGk3zfRy2JnbUdA2GAavLwzPAFtVNAahqYoWeX6Fk,15136
|
|
2
|
+
lunchmoney/api_client.py,sha256=R0ycEz3D1lHNR5asYEVGdYkX_22AgAPlxm4-WGtH8-k,29919
|
|
3
|
+
lunchmoney/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
lunchmoney/configuration.py,sha256=pcLDNMnsQB9acFsdoRfeya4kdDUsZJx9QXy0QjYtpTg,21778
|
|
5
|
+
lunchmoney/exceptions.py,sha256=wwqToE7BTr_gLnBIhciaFC3gcLWTgecvw_n-LczGluc,8624
|
|
6
|
+
lunchmoney/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
lunchmoney/rest.py,sha256=1MGAv4xd3ZkAPmwxxxH6BJWo720nuzSSOrp4NTpzQ0w,11617
|
|
8
|
+
lunchmoney/api/__init__.py,sha256=XmPdrjuhbFsbphTd0HDmZddVazKA8Qm8yQOMTuKNkD8,773
|
|
9
|
+
lunchmoney/api/categories_api.py,sha256=xM-AaMk9AoUrNnyDmIRY0q_ZX34gq7XCqecGrFlqLyw,70485
|
|
10
|
+
lunchmoney/api/manual_accounts_api.py,sha256=SYbtDl21hS3yBC7mVVpTrFrqY1ZwtxQO25Ullm1JmJI,64322
|
|
11
|
+
lunchmoney/api/me_api.py,sha256=cHwQmLKjcGic6JUzID4U0KEFYerM5B1WUL9wAG4gHrU,12921
|
|
12
|
+
lunchmoney/api/plaid_accounts_api.py,sha256=Vl-9W-WNSX16YZ7It3Ydwb_u-6YatwzZzSrBTF_j2nw,41689
|
|
13
|
+
lunchmoney/api/recurring_items_api.py,sha256=YpS2jwiv8SGphqL1tyMTTxXktFjejE42kOv6-xBjGio,32708
|
|
14
|
+
lunchmoney/api/summary_api.py,sha256=oPblZov89FtQ0E5ANasmwi8StpfVaA6fZ5RJ0-DttYI,25244
|
|
15
|
+
lunchmoney/api/tags_api.py,sha256=jsUPmmloGRywV7os4JPWHtJHZfw0UasQRiyzwAHiUTg,60610
|
|
16
|
+
lunchmoney/api/transactions_api.py,sha256=YOYzJvw37bZXXEXWsRNTj0xvW6Lra3R-Ny1-a_pAglg,44500
|
|
17
|
+
lunchmoney/api/transactions_bulk_api.py,sha256=YqJw8uHnkJ6oXu9HMp5B0gJDoeO3Wb2Ojq9NCMvsgCo,98200
|
|
18
|
+
lunchmoney/api/transactions_files_api.py,sha256=Ua8YSxgt9m9oVniiflEZH9CH1gouzsWrF7wzLqwk1oE,37443
|
|
19
|
+
lunchmoney/api/transactions_group_api.py,sha256=hROyFEcuUv19V319Dc4VaYNl_cYZ3HdWthV9X83D5Io,28011
|
|
20
|
+
lunchmoney/api/transactions_split_api.py,sha256=MvmkNI95-9HCjQbNFL8DCcgNFnCGTKQdG-5rGymfi-Q,27784
|
|
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-2.9.0.dist-info/METADATA,sha256=Mv66YpMStveS2QYf6hMMdFyjVnNFnKJLygR5PW3rJes,16389
|
|
90
|
+
lunchmoney_python-2.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
91
|
+
lunchmoney_python-2.9.0.dist-info/top_level.txt,sha256=zZag3NCnXp76Ay6xplmjroAfUH_hWWJzZNxTjxk3CdM,11
|
|
92
|
+
lunchmoney_python-2.9.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lunchmoney
|