Install & Compatibility
Where this runs
tested against v4.0.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 23.2MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.3s · import 0.000s · 24MB
21MB installed
● package 21MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
MollieClient
✓ from mollie import MollieClient
✗ from mollie.api.client import MollieClient
Initialize client with API key and create a payment.
import os
from mollie.api.client import MollieClient
client = MollieClient()
client.set_api_key(os.environ.get('MOLLIE_API_KEY', 'test_dHar4XY7LxsDOt2kVbK0GPLH4eLkgR'))
# Create a payment
payment = client.payments.create({
'amount': {'currency': 'EUR', 'value': '10.00'},
'description': 'Order #12345',
'redirectUrl': 'https://example.com/return',
'webhookUrl': 'https://example.com/webhook'
})
print(f'Payment created: {payment.id}')
Upgrade
Version history
4.0.0latest on PyPI · released Apr 28, 2026
Audit
Dependencies
requestsrequiredHTTP client for API calls