Monzo-API 0.2.1__tar.gz → 1.2.2__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.
- Monzo API-0.2.1/LICENSE → monzo_api-1.2.2/LICENSE +1 -1
- monzo_api-1.2.2/Monzo_API.egg-info/PKG-INFO +191 -0
- Monzo API-0.2.1/Monzo_API.egg-info/SOURCES.txt → monzo_api-1.2.2/Monzo_API.egg-info/SOURCES.txt +2 -14
- monzo_api-1.2.2/Monzo_API.egg-info/top_level.txt +1 -0
- monzo_api-1.2.2/PKG-INFO +191 -0
- monzo_api-1.2.2/README.rst +144 -0
- Monzo API-0.2.1/monzo/authentication.py → monzo_api-1.2.2/monzo/authentication.py +83 -82
- Monzo API-0.2.1/monzo/endpoints/account.py → monzo_api-1.2.2/monzo/endpoints/account.py +71 -24
- Monzo API-0.2.1/monzo/endpoints/attachment.py → monzo_api-1.2.2/monzo/endpoints/attachment.py +47 -57
- Monzo API-0.2.1/monzo/endpoints/balance.py → monzo_api-1.2.2/monzo/endpoints/balance.py +21 -13
- Monzo API-0.2.1/monzo/endpoints/feed_item.py → monzo_api-1.2.2/monzo/endpoints/feed_item.py +37 -32
- Monzo API-0.2.1/monzo/endpoints/monzo.py → monzo_api-1.2.2/monzo/endpoints/monzo.py +6 -3
- Monzo API-0.2.1/monzo/endpoints/pot.py → monzo_api-1.2.2/monzo/endpoints/pot.py +158 -51
- Monzo API-0.2.1/monzo/endpoints/receipt.py → monzo_api-1.2.2/monzo/endpoints/receipt.py +125 -123
- Monzo API-0.2.1/monzo/endpoints/transaction.py → monzo_api-1.2.2/monzo/endpoints/transaction.py +115 -115
- Monzo API-0.2.1/monzo/endpoints/webhooks.py → monzo_api-1.2.2/monzo/endpoints/webhooks.py +16 -15
- Monzo API-0.2.1/monzo/endpoints/whoami.py → monzo_api-1.2.2/monzo/endpoints/whoami.py +9 -9
- Monzo API-0.2.1/monzo/exceptions.py → monzo_api-1.2.2/monzo/exceptions.py +4 -20
- Monzo API-0.2.1/monzo/handlers/filesystem.py → monzo_api-1.2.2/monzo/handlers/filesystem.py +24 -23
- Monzo API-0.2.1/monzo/handlers/storage.py → monzo_api-1.2.2/monzo/handlers/storage.py +15 -5
- monzo_api-1.2.2/monzo/helpers.py +29 -0
- Monzo API-0.2.1/monzo/httpio.py → monzo_api-1.2.2/monzo/httpio.py +44 -48
- monzo_api-1.2.2/pyproject.toml +45 -0
- monzo_api-1.2.2/setup.cfg +4 -0
- monzo_api-1.2.2/tests/test_authentication.py +85 -0
- Monzo API-0.2.1/tests/test_endpoints.py → monzo_api-1.2.2/tests/test_endpoints.py +194 -193
- monzo_api-1.2.2/tests/test_httpio_errors.py +16 -0
- monzo_api-1.2.2/tests/test_payload.py +401 -0
- Monzo API-0.2.1/Monzo_API.egg-info/PKG-INFO +0 -63
- Monzo API-0.2.1/Monzo_API.egg-info/requires.txt +0 -16
- Monzo API-0.2.1/Monzo_API.egg-info/top_level.txt +0 -3
- Monzo API-0.2.1/PKG-INFO +0 -63
- Monzo API-0.2.1/README.rst +0 -37
- Monzo API-0.2.1/examples/auth_step_01.py +0 -11
- Monzo API-0.2.1/examples/auth_step_02.py +0 -26
- Monzo API-0.2.1/examples/create_feed_item.py +0 -33
- Monzo API-0.2.1/examples/get_accounts.py +0 -28
- Monzo API-0.2.1/examples/get_whoami.py +0 -28
- Monzo API-0.2.1/monzo/handlers/__init__.py +0 -1
- Monzo API-0.2.1/monzo/handlers/echo.py +0 -30
- Monzo API-0.2.1/monzo/helpers.py +0 -47
- Monzo API-0.2.1/pyproject.toml +0 -3
- Monzo API-0.2.1/setup.cfg +0 -43
- Monzo API-0.2.1/tests/__init__.py +0 -1
- Monzo API-0.2.1/tests/helpers.py +0 -83
- Monzo API-0.2.1/tests/mock_payloads/__init__.py +0 -1
- Monzo API-0.2.1/tests/mock_responses/__init__.py +0 -1
- Monzo API-0.2.1/tests/test_authentication.py +0 -46
- Monzo API-0.2.1/tests/test_payload.py +0 -355
- {Monzo API-0.2.1 → monzo_api-1.2.2}/Monzo_API.egg-info/dependency_links.txt +0 -0
- {Monzo API-0.2.1/examples → monzo_api-1.2.2/monzo}/__init__.py +0 -0
- {Monzo API-0.2.1/monzo → monzo_api-1.2.2/monzo/endpoints}/__init__.py +0 -0
- {Monzo API-0.2.1/monzo/endpoints → monzo_api-1.2.2/monzo/handlers}/__init__.py +0 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Monzo-API
|
|
3
|
+
Version: 1.2.2
|
|
4
|
+
Summary: Package to interact with the API provided by Monzo bank
|
|
5
|
+
Author-email: Peter McDonald <git@petermcdonald.co.uk>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 (Peter McDonald)
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: homepage, https://github.com/petermcd/monzo-api
|
|
29
|
+
Project-URL: repository, https://github.com/petermcd/monzo-api.git
|
|
30
|
+
Project-URL: issues, https://github.com/petermcd/monzo-api/issues
|
|
31
|
+
Project-URL: documentation, https://monzo-api.readthedocs.io
|
|
32
|
+
Keywords: monzo,bank,api
|
|
33
|
+
Classifier: Intended Audience :: Developers
|
|
34
|
+
Classifier: Operating System :: OS Independent
|
|
35
|
+
Classifier: Programming Language :: Python
|
|
36
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
41
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
42
|
+
Classifier: Typing :: Typed
|
|
43
|
+
Requires-Python: >=3.10
|
|
44
|
+
Description-Content-Type: text/x-rst
|
|
45
|
+
License-File: LICENSE
|
|
46
|
+
Dynamic: license-file
|
|
47
|
+
|
|
48
|
+
Monzo API
|
|
49
|
+
=====================================
|
|
50
|
+
|
|
51
|
+
The Monzo API package allows you to interact with the API provided by Monzo
|
|
52
|
+
bank.
|
|
53
|
+
|
|
54
|
+
DISCLAIMER
|
|
55
|
+
-------------------------------------
|
|
56
|
+
|
|
57
|
+
Before using this package it is important to understand that the Monzo API should only be
|
|
58
|
+
used for non-public projects hosted securely. Please do not use this on a public server
|
|
59
|
+
and do not use it for accessing other users accounts.
|
|
60
|
+
|
|
61
|
+
Installation
|
|
62
|
+
-------------------------------------
|
|
63
|
+
|
|
64
|
+
The package can be installed as a standard pip project:
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
.. code-block:: bash
|
|
68
|
+
|
|
69
|
+
pip install monzo-api
|
|
70
|
+
|
|
71
|
+
Basic Usage
|
|
72
|
+
-------------------------------------
|
|
73
|
+
|
|
74
|
+
Prior to using the API you need to obtain a few details from Monzo. Please
|
|
75
|
+
read `this <https://monzo-api.readthedocs.io/en/latest/monzo_setup.html>`_
|
|
76
|
+
document.
|
|
77
|
+
|
|
78
|
+
Please see the examples in the example directory.
|
|
79
|
+
|
|
80
|
+
Documentation
|
|
81
|
+
-------------------------------------
|
|
82
|
+
|
|
83
|
+
Full documentation can be found on
|
|
84
|
+
`Read The Docs <https://monzo-api.readthedocs.io>`_
|
|
85
|
+
|
|
86
|
+
Implemented End Points
|
|
87
|
+
-------------------------------------
|
|
88
|
+
|
|
89
|
+
.. list-table:: Monzo Endpoints
|
|
90
|
+
:widths: 45 30 25 25
|
|
91
|
+
:header-rows: 1
|
|
92
|
+
|
|
93
|
+
* - End Point
|
|
94
|
+
- Implemented
|
|
95
|
+
- Version
|
|
96
|
+
- Tests Written
|
|
97
|
+
* - Authentication
|
|
98
|
+
- yes
|
|
99
|
+
- 0.0.1
|
|
100
|
+
- No
|
|
101
|
+
* - Refresh Access
|
|
102
|
+
- yes
|
|
103
|
+
- 0.0.1
|
|
104
|
+
- No
|
|
105
|
+
* - Whoami
|
|
106
|
+
- yes
|
|
107
|
+
- 0.0.1
|
|
108
|
+
- Yes
|
|
109
|
+
* - Logout
|
|
110
|
+
- yes
|
|
111
|
+
- 0.0.1
|
|
112
|
+
- Yes
|
|
113
|
+
* - List Accounts
|
|
114
|
+
- yes
|
|
115
|
+
- 0.0.2
|
|
116
|
+
- Yes
|
|
117
|
+
* - Read Balance
|
|
118
|
+
- yes
|
|
119
|
+
- 0.0.2
|
|
120
|
+
- Yes
|
|
121
|
+
* - List Pots
|
|
122
|
+
- yes
|
|
123
|
+
- 0.0.3
|
|
124
|
+
- No
|
|
125
|
+
* - Deposit Into Pot
|
|
126
|
+
- yes
|
|
127
|
+
- 0.0.3
|
|
128
|
+
- No
|
|
129
|
+
* - Withdraw From Pot
|
|
130
|
+
- yes
|
|
131
|
+
- 0.0.3
|
|
132
|
+
- No
|
|
133
|
+
* - Get Transaction
|
|
134
|
+
- yes
|
|
135
|
+
- 0.0.4
|
|
136
|
+
- No (Testing Fails)
|
|
137
|
+
* - Get Transaction List
|
|
138
|
+
- yes
|
|
139
|
+
- 0.0.4
|
|
140
|
+
- Yes
|
|
141
|
+
* - Annotate Transaction
|
|
142
|
+
- yes
|
|
143
|
+
- 0.1.1 \*
|
|
144
|
+
- Yes
|
|
145
|
+
* - Create Feed Item
|
|
146
|
+
- yes
|
|
147
|
+
- 0.0.2
|
|
148
|
+
- Yes
|
|
149
|
+
* - Upload Attachment
|
|
150
|
+
-
|
|
151
|
+
-
|
|
152
|
+
- No
|
|
153
|
+
* - Register Attachment
|
|
154
|
+
-
|
|
155
|
+
-
|
|
156
|
+
- No
|
|
157
|
+
* - Deregister Attachment
|
|
158
|
+
-
|
|
159
|
+
-
|
|
160
|
+
- No
|
|
161
|
+
* - Fetch Receipt
|
|
162
|
+
- yes
|
|
163
|
+
- 0.1.2
|
|
164
|
+
- Yes
|
|
165
|
+
* - Create Receipt
|
|
166
|
+
- yes
|
|
167
|
+
- 0.1.2
|
|
168
|
+
- Yes
|
|
169
|
+
* - Delete Receipt
|
|
170
|
+
- yes
|
|
171
|
+
- 0.1.2
|
|
172
|
+
- No, Functionality currently broken
|
|
173
|
+
* - Register Webhook
|
|
174
|
+
- yes
|
|
175
|
+
- 0.0.3
|
|
176
|
+
- Yes
|
|
177
|
+
* - List Webhooks
|
|
178
|
+
- yes
|
|
179
|
+
- 0.0.3
|
|
180
|
+
- Yes
|
|
181
|
+
* - Delete Webhooks
|
|
182
|
+
- yes
|
|
183
|
+
- 0.0.3
|
|
184
|
+
- Yes
|
|
185
|
+
* - Open Banking API
|
|
186
|
+
- No
|
|
187
|
+
- \*\*
|
|
188
|
+
-
|
|
189
|
+
|
|
190
|
+
* \* Annotations only appear to work for existing keys such as Notes `view on the forum <https://community.monzo.com/t/annotate-transaction-endpoint-not-working-for-custom-key/121203>`_.
|
|
191
|
+
* \*\* It is unlikely that this package will implement usage of the Open Banking API due to restrictions accessing it.
|
Monzo API-0.2.1/Monzo_API.egg-info/SOURCES.txt → monzo_api-1.2.2/Monzo_API.egg-info/SOURCES.txt
RENAMED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
LICENSE
|
|
2
2
|
README.rst
|
|
3
3
|
pyproject.toml
|
|
4
|
-
setup.cfg
|
|
5
4
|
Monzo_API.egg-info/PKG-INFO
|
|
6
5
|
Monzo_API.egg-info/SOURCES.txt
|
|
7
6
|
Monzo_API.egg-info/dependency_links.txt
|
|
8
|
-
Monzo_API.egg-info/requires.txt
|
|
9
7
|
Monzo_API.egg-info/top_level.txt
|
|
10
|
-
examples/__init__.py
|
|
11
|
-
examples/auth_step_01.py
|
|
12
|
-
examples/auth_step_02.py
|
|
13
|
-
examples/create_feed_item.py
|
|
14
|
-
examples/get_accounts.py
|
|
15
|
-
examples/get_whoami.py
|
|
16
8
|
monzo/__init__.py
|
|
17
9
|
monzo/authentication.py
|
|
18
10
|
monzo/exceptions.py
|
|
@@ -30,13 +22,9 @@ monzo/endpoints/transaction.py
|
|
|
30
22
|
monzo/endpoints/webhooks.py
|
|
31
23
|
monzo/endpoints/whoami.py
|
|
32
24
|
monzo/handlers/__init__.py
|
|
33
|
-
monzo/handlers/echo.py
|
|
34
25
|
monzo/handlers/filesystem.py
|
|
35
26
|
monzo/handlers/storage.py
|
|
36
|
-
tests/__init__.py
|
|
37
|
-
tests/helpers.py
|
|
38
27
|
tests/test_authentication.py
|
|
39
28
|
tests/test_endpoints.py
|
|
40
|
-
tests/
|
|
41
|
-
tests/
|
|
42
|
-
tests/mock_responses/__init__.py
|
|
29
|
+
tests/test_httpio_errors.py
|
|
30
|
+
tests/test_payload.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
monzo
|
monzo_api-1.2.2/PKG-INFO
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Monzo-API
|
|
3
|
+
Version: 1.2.2
|
|
4
|
+
Summary: Package to interact with the API provided by Monzo bank
|
|
5
|
+
Author-email: Peter McDonald <git@petermcdonald.co.uk>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 (Peter McDonald)
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: homepage, https://github.com/petermcd/monzo-api
|
|
29
|
+
Project-URL: repository, https://github.com/petermcd/monzo-api.git
|
|
30
|
+
Project-URL: issues, https://github.com/petermcd/monzo-api/issues
|
|
31
|
+
Project-URL: documentation, https://monzo-api.readthedocs.io
|
|
32
|
+
Keywords: monzo,bank,api
|
|
33
|
+
Classifier: Intended Audience :: Developers
|
|
34
|
+
Classifier: Operating System :: OS Independent
|
|
35
|
+
Classifier: Programming Language :: Python
|
|
36
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
41
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
42
|
+
Classifier: Typing :: Typed
|
|
43
|
+
Requires-Python: >=3.10
|
|
44
|
+
Description-Content-Type: text/x-rst
|
|
45
|
+
License-File: LICENSE
|
|
46
|
+
Dynamic: license-file
|
|
47
|
+
|
|
48
|
+
Monzo API
|
|
49
|
+
=====================================
|
|
50
|
+
|
|
51
|
+
The Monzo API package allows you to interact with the API provided by Monzo
|
|
52
|
+
bank.
|
|
53
|
+
|
|
54
|
+
DISCLAIMER
|
|
55
|
+
-------------------------------------
|
|
56
|
+
|
|
57
|
+
Before using this package it is important to understand that the Monzo API should only be
|
|
58
|
+
used for non-public projects hosted securely. Please do not use this on a public server
|
|
59
|
+
and do not use it for accessing other users accounts.
|
|
60
|
+
|
|
61
|
+
Installation
|
|
62
|
+
-------------------------------------
|
|
63
|
+
|
|
64
|
+
The package can be installed as a standard pip project:
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
.. code-block:: bash
|
|
68
|
+
|
|
69
|
+
pip install monzo-api
|
|
70
|
+
|
|
71
|
+
Basic Usage
|
|
72
|
+
-------------------------------------
|
|
73
|
+
|
|
74
|
+
Prior to using the API you need to obtain a few details from Monzo. Please
|
|
75
|
+
read `this <https://monzo-api.readthedocs.io/en/latest/monzo_setup.html>`_
|
|
76
|
+
document.
|
|
77
|
+
|
|
78
|
+
Please see the examples in the example directory.
|
|
79
|
+
|
|
80
|
+
Documentation
|
|
81
|
+
-------------------------------------
|
|
82
|
+
|
|
83
|
+
Full documentation can be found on
|
|
84
|
+
`Read The Docs <https://monzo-api.readthedocs.io>`_
|
|
85
|
+
|
|
86
|
+
Implemented End Points
|
|
87
|
+
-------------------------------------
|
|
88
|
+
|
|
89
|
+
.. list-table:: Monzo Endpoints
|
|
90
|
+
:widths: 45 30 25 25
|
|
91
|
+
:header-rows: 1
|
|
92
|
+
|
|
93
|
+
* - End Point
|
|
94
|
+
- Implemented
|
|
95
|
+
- Version
|
|
96
|
+
- Tests Written
|
|
97
|
+
* - Authentication
|
|
98
|
+
- yes
|
|
99
|
+
- 0.0.1
|
|
100
|
+
- No
|
|
101
|
+
* - Refresh Access
|
|
102
|
+
- yes
|
|
103
|
+
- 0.0.1
|
|
104
|
+
- No
|
|
105
|
+
* - Whoami
|
|
106
|
+
- yes
|
|
107
|
+
- 0.0.1
|
|
108
|
+
- Yes
|
|
109
|
+
* - Logout
|
|
110
|
+
- yes
|
|
111
|
+
- 0.0.1
|
|
112
|
+
- Yes
|
|
113
|
+
* - List Accounts
|
|
114
|
+
- yes
|
|
115
|
+
- 0.0.2
|
|
116
|
+
- Yes
|
|
117
|
+
* - Read Balance
|
|
118
|
+
- yes
|
|
119
|
+
- 0.0.2
|
|
120
|
+
- Yes
|
|
121
|
+
* - List Pots
|
|
122
|
+
- yes
|
|
123
|
+
- 0.0.3
|
|
124
|
+
- No
|
|
125
|
+
* - Deposit Into Pot
|
|
126
|
+
- yes
|
|
127
|
+
- 0.0.3
|
|
128
|
+
- No
|
|
129
|
+
* - Withdraw From Pot
|
|
130
|
+
- yes
|
|
131
|
+
- 0.0.3
|
|
132
|
+
- No
|
|
133
|
+
* - Get Transaction
|
|
134
|
+
- yes
|
|
135
|
+
- 0.0.4
|
|
136
|
+
- No (Testing Fails)
|
|
137
|
+
* - Get Transaction List
|
|
138
|
+
- yes
|
|
139
|
+
- 0.0.4
|
|
140
|
+
- Yes
|
|
141
|
+
* - Annotate Transaction
|
|
142
|
+
- yes
|
|
143
|
+
- 0.1.1 \*
|
|
144
|
+
- Yes
|
|
145
|
+
* - Create Feed Item
|
|
146
|
+
- yes
|
|
147
|
+
- 0.0.2
|
|
148
|
+
- Yes
|
|
149
|
+
* - Upload Attachment
|
|
150
|
+
-
|
|
151
|
+
-
|
|
152
|
+
- No
|
|
153
|
+
* - Register Attachment
|
|
154
|
+
-
|
|
155
|
+
-
|
|
156
|
+
- No
|
|
157
|
+
* - Deregister Attachment
|
|
158
|
+
-
|
|
159
|
+
-
|
|
160
|
+
- No
|
|
161
|
+
* - Fetch Receipt
|
|
162
|
+
- yes
|
|
163
|
+
- 0.1.2
|
|
164
|
+
- Yes
|
|
165
|
+
* - Create Receipt
|
|
166
|
+
- yes
|
|
167
|
+
- 0.1.2
|
|
168
|
+
- Yes
|
|
169
|
+
* - Delete Receipt
|
|
170
|
+
- yes
|
|
171
|
+
- 0.1.2
|
|
172
|
+
- No, Functionality currently broken
|
|
173
|
+
* - Register Webhook
|
|
174
|
+
- yes
|
|
175
|
+
- 0.0.3
|
|
176
|
+
- Yes
|
|
177
|
+
* - List Webhooks
|
|
178
|
+
- yes
|
|
179
|
+
- 0.0.3
|
|
180
|
+
- Yes
|
|
181
|
+
* - Delete Webhooks
|
|
182
|
+
- yes
|
|
183
|
+
- 0.0.3
|
|
184
|
+
- Yes
|
|
185
|
+
* - Open Banking API
|
|
186
|
+
- No
|
|
187
|
+
- \*\*
|
|
188
|
+
-
|
|
189
|
+
|
|
190
|
+
* \* Annotations only appear to work for existing keys such as Notes `view on the forum <https://community.monzo.com/t/annotate-transaction-endpoint-not-working-for-custom-key/121203>`_.
|
|
191
|
+
* \*\* It is unlikely that this package will implement usage of the Open Banking API due to restrictions accessing it.
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
Monzo API
|
|
2
|
+
=====================================
|
|
3
|
+
|
|
4
|
+
The Monzo API package allows you to interact with the API provided by Monzo
|
|
5
|
+
bank.
|
|
6
|
+
|
|
7
|
+
DISCLAIMER
|
|
8
|
+
-------------------------------------
|
|
9
|
+
|
|
10
|
+
Before using this package it is important to understand that the Monzo API should only be
|
|
11
|
+
used for non-public projects hosted securely. Please do not use this on a public server
|
|
12
|
+
and do not use it for accessing other users accounts.
|
|
13
|
+
|
|
14
|
+
Installation
|
|
15
|
+
-------------------------------------
|
|
16
|
+
|
|
17
|
+
The package can be installed as a standard pip project:
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
.. code-block:: bash
|
|
21
|
+
|
|
22
|
+
pip install monzo-api
|
|
23
|
+
|
|
24
|
+
Basic Usage
|
|
25
|
+
-------------------------------------
|
|
26
|
+
|
|
27
|
+
Prior to using the API you need to obtain a few details from Monzo. Please
|
|
28
|
+
read `this <https://monzo-api.readthedocs.io/en/latest/monzo_setup.html>`_
|
|
29
|
+
document.
|
|
30
|
+
|
|
31
|
+
Please see the examples in the example directory.
|
|
32
|
+
|
|
33
|
+
Documentation
|
|
34
|
+
-------------------------------------
|
|
35
|
+
|
|
36
|
+
Full documentation can be found on
|
|
37
|
+
`Read The Docs <https://monzo-api.readthedocs.io>`_
|
|
38
|
+
|
|
39
|
+
Implemented End Points
|
|
40
|
+
-------------------------------------
|
|
41
|
+
|
|
42
|
+
.. list-table:: Monzo Endpoints
|
|
43
|
+
:widths: 45 30 25 25
|
|
44
|
+
:header-rows: 1
|
|
45
|
+
|
|
46
|
+
* - End Point
|
|
47
|
+
- Implemented
|
|
48
|
+
- Version
|
|
49
|
+
- Tests Written
|
|
50
|
+
* - Authentication
|
|
51
|
+
- yes
|
|
52
|
+
- 0.0.1
|
|
53
|
+
- No
|
|
54
|
+
* - Refresh Access
|
|
55
|
+
- yes
|
|
56
|
+
- 0.0.1
|
|
57
|
+
- No
|
|
58
|
+
* - Whoami
|
|
59
|
+
- yes
|
|
60
|
+
- 0.0.1
|
|
61
|
+
- Yes
|
|
62
|
+
* - Logout
|
|
63
|
+
- yes
|
|
64
|
+
- 0.0.1
|
|
65
|
+
- Yes
|
|
66
|
+
* - List Accounts
|
|
67
|
+
- yes
|
|
68
|
+
- 0.0.2
|
|
69
|
+
- Yes
|
|
70
|
+
* - Read Balance
|
|
71
|
+
- yes
|
|
72
|
+
- 0.0.2
|
|
73
|
+
- Yes
|
|
74
|
+
* - List Pots
|
|
75
|
+
- yes
|
|
76
|
+
- 0.0.3
|
|
77
|
+
- No
|
|
78
|
+
* - Deposit Into Pot
|
|
79
|
+
- yes
|
|
80
|
+
- 0.0.3
|
|
81
|
+
- No
|
|
82
|
+
* - Withdraw From Pot
|
|
83
|
+
- yes
|
|
84
|
+
- 0.0.3
|
|
85
|
+
- No
|
|
86
|
+
* - Get Transaction
|
|
87
|
+
- yes
|
|
88
|
+
- 0.0.4
|
|
89
|
+
- No (Testing Fails)
|
|
90
|
+
* - Get Transaction List
|
|
91
|
+
- yes
|
|
92
|
+
- 0.0.4
|
|
93
|
+
- Yes
|
|
94
|
+
* - Annotate Transaction
|
|
95
|
+
- yes
|
|
96
|
+
- 0.1.1 \*
|
|
97
|
+
- Yes
|
|
98
|
+
* - Create Feed Item
|
|
99
|
+
- yes
|
|
100
|
+
- 0.0.2
|
|
101
|
+
- Yes
|
|
102
|
+
* - Upload Attachment
|
|
103
|
+
-
|
|
104
|
+
-
|
|
105
|
+
- No
|
|
106
|
+
* - Register Attachment
|
|
107
|
+
-
|
|
108
|
+
-
|
|
109
|
+
- No
|
|
110
|
+
* - Deregister Attachment
|
|
111
|
+
-
|
|
112
|
+
-
|
|
113
|
+
- No
|
|
114
|
+
* - Fetch Receipt
|
|
115
|
+
- yes
|
|
116
|
+
- 0.1.2
|
|
117
|
+
- Yes
|
|
118
|
+
* - Create Receipt
|
|
119
|
+
- yes
|
|
120
|
+
- 0.1.2
|
|
121
|
+
- Yes
|
|
122
|
+
* - Delete Receipt
|
|
123
|
+
- yes
|
|
124
|
+
- 0.1.2
|
|
125
|
+
- No, Functionality currently broken
|
|
126
|
+
* - Register Webhook
|
|
127
|
+
- yes
|
|
128
|
+
- 0.0.3
|
|
129
|
+
- Yes
|
|
130
|
+
* - List Webhooks
|
|
131
|
+
- yes
|
|
132
|
+
- 0.0.3
|
|
133
|
+
- Yes
|
|
134
|
+
* - Delete Webhooks
|
|
135
|
+
- yes
|
|
136
|
+
- 0.0.3
|
|
137
|
+
- Yes
|
|
138
|
+
* - Open Banking API
|
|
139
|
+
- No
|
|
140
|
+
- \*\*
|
|
141
|
+
-
|
|
142
|
+
|
|
143
|
+
* \* Annotations only appear to work for existing keys such as Notes `view on the forum <https://community.monzo.com/t/annotate-transaction-endpoint-not-working-for-custom-key/121203>`_.
|
|
144
|
+
* \*\* It is unlikely that this package will implement usage of the Open Banking API due to restrictions accessing it.
|