mollie-api-python
mollie-api-python copied to clipboard
Mollie API client for Python
This uncovers various issues with the implementation of `get_resource_class()`. Now we have mypy passing and the code should work in theory, but the only place where this method is used...
A heavily simplified class to wrap the results of `.list()` calls. Has cleaner code, implements autopagination handling, and no more features that actually shouldn't be there. See commit message for...
We are not supporting this endpoint yet: https://docs.mollie.com/reference/v2/balances-api/overview
### Problem The current `Objectlist` (the object that wraps a collection of API results, f.i. "get payments") is a messy class. - It supports some methods that make it behave...
We currently have no support for https://docs.mollie.com/reference/v2/organizations-api/get-partner
We currently have no support for https://docs.mollie.com/reference/oauth2/revoke-token
The code in `examples/` is currently untested: we assume that it works but this needs to be verified by hand after major changes, which is a hassle. It is possible...
The current setup for packaging is a bit dated, we use `setup.py` and don't use nide features like extras etc. What we could achieve: - Use `pyproject.toml` for configuring the...
The chargebacks and refunds resource implement the 'get' function simply as if it's a normal one of the basic resources (e.g.. payments, orders, customers). For these basic resources simply the...
### Issue: The response when adding the `embed` parameter for e.g. the payments resource will not lead to a response with the embedded values in the Payment object. There is...