Última actualización / Last updated: 2026-07-05
KidzBank no recolecta ningún dato personal.
- Toda la información de tu familia (nombres o apodos, montos, movimientos) se guarda en tu dispositivo y, si tienes iCloud activo, en **tu cuenta
| { | |
| "updatedAt": "2026-07-04T00:00:00Z", | |
| "rates": [ | |
| { "id": "CL", "policyRatePercent": 5.0 }, | |
| { "id": "US", "policyRatePercent": 4.5 }, | |
| { "id": "EU", "policyRatePercent": 2.25 }, | |
| { "id": "MX", "policyRatePercent": 8.0 }, | |
| { "id": "BR", "policyRatePercent": 14.0 }, | |
| { "id": "CO", "policyRatePercent": 9.0 }, | |
| { "id": "PE", "policyRatePercent": 4.75 }, |
| # Taken from a stackoverflow answer ... not written by me. | |
| from io import StringIO | |
| import sys | |
| class Capturing(list): | |
| def __enter__(self): | |
| self._stdout = sys.stdout | |
| sys.stdout = self._stringio = StringIO() | |
| return self | |
| def __exit__(self, *args): |