You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README-PYPI.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,23 +55,23 @@ The SDK can be installed with either *pip* or *poetry* package managers.
55
55
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
56
56
57
57
```bash
58
-
pip install mollie-api-python-beta
58
+
pip install mollie
59
59
```
60
60
61
61
### Poetry
62
62
63
63
*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
64
64
65
65
```bash
66
-
poetry add mollie-api-python-beta
66
+
poetry add mollie
67
67
```
68
68
69
69
### Shell and script usage with `uv`
70
70
71
71
You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
72
72
73
73
```shell
74
-
uvx --from mollie-api-python-beta python
74
+
uvx --from mollie python
75
75
```
76
76
77
77
It's also possible to write a standalone Python script without needing to set up a whole project like so:
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,23 +55,23 @@ The SDK can be installed with either *pip* or *poetry* package managers.
55
55
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
56
56
57
57
```bash
58
-
pip install mollie-api-python-beta
58
+
pip install mollie
59
59
```
60
60
61
61
### Poetry
62
62
63
63
*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
64
64
65
65
```bash
66
-
poetry add mollie-api-python-beta
66
+
poetry add mollie
67
67
```
68
68
69
69
### Shell and script usage with `uv`
70
70
71
71
You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
72
72
73
73
```shell
74
-
uvx --from mollie-api-python-beta python
74
+
uvx --from mollie python
75
75
```
76
76
77
77
It's also possible to write a standalone Python script without needing to set up a whole project like so:
Copy file name to clipboardExpand all lines: docs/sdks/clientlinks/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,10 @@ After adding the above url parameter your URL will look something like this and
45
45
46
46
Error handling is also dealt with similar to the [Authorize](https://docs.mollie.com/reference/authorize) endpoint: the customer is redirected back to your app's redirect URL with the `error` and `error_description` parameters added to the URL.
47
47
48
+
> 🚧
49
+
>
50
+
> A client link must be used within 30 days of creation. After that period, it will expire and you will need to create a new client link.
51
+
48
52
> 🔑 Access with
49
53
>
50
54
> [Access token with **clients.write**](/reference/authentication)
Copy file name to clipboardExpand all lines: src/mollie/client_links.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,10 @@ def create(
62
62
63
63
Error handling is also dealt with similar to the [Authorize](https://docs.mollie.com/reference/authorize) endpoint: the customer is redirected back to your app's redirect URL with the `error` and `error_description` parameters added to the URL.
64
64
65
+
> 🚧
66
+
>
67
+
> A client link must be used within 30 days of creation. After that period, it will expire and you will need to create a new client link.
68
+
65
69
> 🔑 Access with
66
70
>
67
71
> [Access token with **clients.write**](/reference/authentication)
@@ -218,6 +222,10 @@ async def create_async(
218
222
219
223
Error handling is also dealt with similar to the [Authorize](https://docs.mollie.com/reference/authorize) endpoint: the customer is redirected back to your app's redirect URL with the `error` and `error_description` parameters added to the URL.
220
224
225
+
> 🚧
226
+
>
227
+
> A client link must be used within 30 days of creation. After that period, it will expire and you will need to create a new client link.
228
+
221
229
> 🔑 Access with
222
230
>
223
231
> [Access token with **clients.write**](/reference/authentication)
0 commit comments