Skip to content

PyRevolut Base Client

This base class provides the common interface for the synchronous and asynchronous clients. The base client is not meant to be used directly.


BaseClient

The base client for the Revolut API

Source code in pyrevolut/client/base.py
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
class BaseClient:
    """The base client for the Revolut API"""

    creds_loc: str
    creds: str | dict | None = None
    credentials: ModelCreds
    domain: str
    sandbox: bool
    return_type: Literal["raw", "dict", "model"] = "dict"
    error_response: Literal["raw", "raise", "dict", "model"] = "raise"
    custom_save_fn: Callable[[ModelCreds], None] | None = None
    custom_load_fn: Callable[..., ModelCreds] | None = None
    client: SyncClient | AsyncClient | None = None

    def __init__(
        self,
        creds_loc: str = "credentials/creds.json",
        creds: str | dict | None = None,
        sandbox: bool = True,
        return_type: Literal["raw", "dict", "model"] = "dict",
        error_response: Literal["raw", "raise", "dict", "model"] = "raise",
        custom_save_fn: Callable[[ModelCreds], None] | None = None,
        custom_load_fn: Callable[..., ModelCreds] | None = None,
    ):
        """Create a new Revolut client

        Parameters
        ----------
        creds_loc : str, optional
            The location of the credentials file, by default "credentials/creds.json".
            If the creds input is not provided, will load the credentials from this file.
        creds : str | dict, optional
            The credentials to use for the client, by default None. If not provided, will
            load the credentials from the creds_loc file.
            Can be a dictionary of the credentials or a base64 encoded string of the credentials json.
        sandbox : bool, optional
            Whether to use the sandbox environment, by default True
        return_type : Literal["raw", "dict", "model"], optional
            The return type for the API responses, by default "dict"
            If "raw":
                The raw response will be returned
            If "dict":
                The response will be the dictionary representation of the Pydantic model.
                So it will have UUIDs, pendulum DateTimes, etc instead of the raw string values.
            If "model":
                The response will be a Pydantic model containing all processed response data.
        error_response : Literal["raw", "raise", "dict", "model"], optional
            How the client should handle error responses, by default "raise"
            If "raw":
                The client will return the raw error response
            If "raise":
                The client will raise a ValueError if the response is an error
            If "dict":
                The client will return a dictionary representation of the error response
            If "model":
                The client will return a Pydantic model of the error response
        custom_save_fn : Callable[[ModelCreds], None], optional
            A custom function to save the credentials, by default None
        custom_load_fn : Callable[..., ModelCreds], optional
            A custom function to load the credentials, by default None
        """
        assert return_type in [
            "raw",
            "dict",
            "model",
        ], "return_type must be 'raw', 'dict', or 'model'"
        assert error_response in [
            "raise",
            "dict",
            "model",
        ], "error_response must be 'raise', 'dict', or 'model'"
        assert ".json" in creds_loc, "creds_loc must be a .json file"

        self.creds_loc = creds_loc
        self.creds = creds
        self.sandbox = sandbox
        self.return_type = return_type
        self.error_response = error_response
        self.custom_save_fn = custom_save_fn
        self.custom_load_fn = custom_load_fn

        # Set domain based on environment
        if self.sandbox:
            self.domain = "https://sandbox-b2b.revolut.com/api"
        else:
            self.domain = "https://b2b.revolut.com/api"

        # Load the credentials
        self.load_credentials()

        # Load the endpoints
        self.load_endpoints()

    def process_response(
        self,
        response: Response,
        response_model: BM,
        return_type: Literal["raw", "dict", "model"] | None = None,
        error_response: Literal["raw", "raise", "dict", "model"] | None = "raise",
    ):
        """Processes the response and returns the desired format.
        Will additionally log the request and response.

        Parameters
        ----------
        response : Response
            The HTTPX response to process
        response_model : BM
            The Pydantic model to use for the response
        return_type : Literal["raw", "dict", "model"] | None, optional
            The return type for the API responses, by default None.
            If "raw":
                The raw response will be returned
            If "dict":
                The response will be the dictionary representation of the Pydantic model.
                So it will have UUIDs, pendulum DateTimes, etc instead of the raw string values.
            If "model":
                The response will be a Pydantic model containing all processed response data.
            If None:
                The default return type of the client will be used.
        error_response : Literal["raw", "raise", "dict", "model"] | None, optional
            How the client should handle error responses, by default None.
            If "raw":
                The client will return the raw error response
            If "raise":
                The client will raise a ValueError if the response is an error
            If "dict":
                The client will return a dictionary representation of the error response
            If "model":
                The client will return a Pydantic model of the error response
            If None:
                The default error response type of the client will be used.

        Returns
        -------
        BM | dict | list[BM] | list[dict]
            The response in the desired format
        """
        if return_type is None:
            return_type = self.return_type
        if error_response is None:
            error_response = self.error_response

        # Log the request
        self.log_request(request=response.request)

        # Log the response
        self.log_response(response=response)

        # Check for error response
        if response.is_error:
            if error_response == "raise":
                try:
                    response.raise_for_status()
                except TimeoutException as exc:
                    raise PyRevolutTimeoutError() from exc
                except NetworkError as exc:
                    raise PyRevolutNetworkError() from exc
                except HTTPError as exc:
                    if response.status_code == 400:
                        raise PyRevolutBadRequest() from exc
                    elif response.status_code == 401:
                        raise PyRevolutUnauthorized() from exc
                    elif response.status_code == 403:
                        raise PyRevolutForbidden() from exc
                    elif response.status_code == 404:
                        raise PyRevolutNotFound() from exc
                    elif response.status_code == 405:
                        raise PyRevolutMethodNotAllowed() from exc
                    elif response.status_code == 406:
                        raise PyRevolutNotAcceptable() from exc
                    elif response.status_code == 409:
                        raise PyRevolutConflict() from exc
                    elif response.status_code == 429:
                        raise PyRevolutTooManyRequests() from exc
                    elif response.status_code == 500:
                        raise PyRevolutInternalServerError() from exc
                    elif response.status_code == 503:
                        raise PyRevolutServerUnavailable() from exc
                    raise PyRevolutBaseException() from exc
            elif error_response == "raw":
                return response.json()
            elif error_response == "dict":
                return ModelError(**response.json()).model_dump()
            elif error_response == "model":
                return ModelError(**response.json())
            else:
                raise ValueError(f"Invalid error response type: {error_response}")

        # Raw response
        try:
            raw_response = response.json()
        except json.JSONDecodeError:
            raw_response = {}
        if return_type == "raw":
            return raw_response

        # Dict response
        if isinstance(raw_response, list):
            model_response = [response_model(**resp) for resp in raw_response]
        else:
            model_response = response_model(**raw_response)
        if return_type == "dict":
            if isinstance(model_response, list):
                return [resp.model_dump() for resp in model_response]
            return model_response.model_dump()

        # Model response
        if return_type == "model":
            return model_response

    def log_request(self, request: Request):
        """Log the request to the API

        Parameters
        ----------
        request : Request
            The request to log

        Returns
        -------
        None
        """
        logging.info(
            f"Request: {request.method} {request.url} - {request.headers} - {request.read().decode()}"
        )

    def log_response(self, response: Response):
        """Log the response from the API.

        Parameters
        ----------
        response : Response
            The response from the API

        Returns
        -------
        None
        """
        if not response.is_error:
            logging.info(f"Response: {response.status_code} - {response.text}")
        else:
            logging.error(f"Response: {response.status_code} - {response.text}")

    def _prep_get(
        self,
        path: str,
        params: Type[BaseModel] | None = None,
        **kwargs,
    ):
        """
        Method to prepare the GET request inputs for the HTTPX client.

        Parameters
        ----------
        path : str
            The path to send the request to
        params : Type[BaseModel] | None
            The parameters to add to the request route
        **kwargs
            Additional keyword arguments to pass to the HTTPX client

        Returns
        -------
        dict
            The prepared inputs for the HTTPX client
        """
        self.__check_client()
        path = self.__process_path(path)
        url = f"{self.domain}/{path}"
        headers = self.__create_headers(kwargs.pop("headers", {}))
        params = (
            self.__replace_null_with_none(
                data=params.model_dump(mode="json", exclude_none=True, by_alias=True)
            )
            if params is not None
            else None
        )
        return {
            "url": url,
            "params": params,
            "headers": headers,
            **kwargs,
        }

    def _prep_post(
        self,
        path: str,
        body: Type[BaseModel] | None = None,
        **kwargs,
    ):
        """
        Method to prepare the POST request inputs for the HTTPX client.

        Parameters
        ----------
        path : str
            The path to send the request to
        body : Type[BaseModel] | None
            The body to send in the request
        **kwargs
            Additional keyword arguments to pass to the HTTPX client

        Returns
        -------
        dict
            The prepared inputs for the HTTPX client
        """
        self.__check_client()
        path = self.__process_path(path)
        url = f"{self.domain}/{path}"
        headers = self.__create_headers(kwargs.pop("headers", {}))
        json = (
            self.__replace_null_with_none(
                data=body.model_dump(mode="json", exclude_none=True, by_alias=True)
            )
            if body is not None
            else None
        )
        return {
            "url": url,
            "json": json,
            "headers": headers,
            **kwargs,
        }

    def _prep_patch(
        self,
        path: str,
        body: Type[BaseModel] | None = None,
        **kwargs,
    ):
        """
        Method to prepare the PATCH request inputs for the HTTPX client.

        Parameters
        ----------
        path : str
            The path to send the request to
        body : Type[BaseModel] | None
            The body to send in the request
        **kwargs
            Additional keyword arguments to pass to the HTTPX client

        Returns
        -------
        dict
            The prepared inputs for the HTTPX client
        """
        self.__check_client()
        path = self.__process_path(path)
        url = f"{self.domain}/{path}"
        headers = self.__create_headers(kwargs.pop("headers", {}))
        json = (
            self.__replace_null_with_none(
                data=body.model_dump(mode="json", exclude_none=True, by_alias=True)
            )
            if body is not None
            else None
        )
        return {
            "url": url,
            "json": json,
            "headers": headers,
            **kwargs,
        }

    def _prep_delete(
        self,
        path: str,
        params: Type[BaseModel] | None = None,
        **kwargs,
    ):
        """
        Method to prepare the DELETE request inputs for the HTTPX client.

        Parameters
        ----------
        path : str
            The path to send the request to
        params : Type[BaseModel] | None
            The parameters to add to the request route
        **kwargs
            Additional keyword arguments to pass to the HTTPX client

        Returns
        -------
        dict
            The prepared inputs for the HTTPX client
        """
        self.__check_client()
        path = self.__process_path(path)
        url = f"{self.domain}/{path}"
        headers = self.__create_headers(kwargs.pop("headers", {}))
        params = (
            self.__replace_null_with_none(
                data=params.model_dump(mode="json", exclude_none=True, by_alias=True)
            )
            if params is not None
            else None
        )
        return {
            "url": url,
            "params": params,
            "headers": headers,
            **kwargs,
        }

    def _prep_put(
        self,
        path: str,
        body: Type[BaseModel] | None = None,
        **kwargs,
    ):
        """
        Method to prepare the PUT request inputs for the HTTPX client.

        Parameters
        ----------
        path : str
            The path to send the request to
        body : Type[BaseModel] | None
            The body to send in the request
        **kwargs
            Additional keyword arguments to pass to the HTTPX client

        Returns
        -------
        dict
            The prepared inputs for the HTTPX client
        """
        self.__check_client()
        path = self.__process_path(path)
        url = f"{self.domain}/{path}"
        headers = self.__create_headers(kwargs.pop("headers", {}))
        json = (
            self.__replace_null_with_none(
                data=body.model_dump(mode="json", exclude_none=True, by_alias=True)
            )
            if body is not None
            else None
        )
        return {
            "url": url,
            "json": json,
            "headers": headers,
            **kwargs,
        }

    def load_endpoints(self):
        """Loads all the endpoints from the api directory"""
        raise NotImplementedError("load_endpoints method must be implemented")

    @property
    def required_headers(self) -> dict[str, str]:
        """The headers to be attached to each request

        Returns
        -------
        dict[str, str]
            The headers to be attached to each request
        """
        return {
            "Accept": "application/json",
            "Authorization": f"Bearer {self.credentials.tokens.access_token.get_secret_value()}",
        }

    def __create_headers(self, headers: dict[str, str] = {}) -> dict[str, str]:
        """Create the headers for the request by adding the required headers

        Parameters
        ----------
        headers : dict[str, str]
            The headers for the request

        Returns
        -------
        dict[str, str]
            The headers for the request
        """
        headers.update(self.required_headers)
        return headers

    def __check_client(self):
        """Check if the client is open and that the credentials are still valid.

        Raises
        ------
        ValueError
            If the client is not open or if the long-term credentials have expired
        """
        if self.client is None:
            raise RuntimeError(
                "Client is not open. Use .open() or the contextmanager to open the client."
            )

        if self.credentials.credentials_expired:
            raise ValueError(
                "Long-term credentials have expired. "
                "\n\nPlease reauthenticate using the `pyrevolut auth-manual` command."
            )

        if self.credentials.access_token_expired:
            self.refresh_access_token()

    def __process_path(self, path: str) -> str:
        """Process the path.

        If 'http' not in the path:
            Removing the leading slash if it exists
        Else:
            Return the path as is

        Parameters
        ----------
        path : str
            The path to process

        Returns
        -------
        str
            The processed path
        """
        if "http" in path:
            return path

        return self.__remove_leading_slash(path=path)

    def __remove_leading_slash(self, path: str) -> str:
        """Remove the leading slash from a path if it exists and
        return it without the leading slash

        Parameters
        ----------
        path : str
            The path to remove the leading slash from

        Returns
        -------
        str
            The path without the leading slash
        """
        if path.startswith("/"):
            return path[1:]
        return path

    def __replace_null_with_none(self, data: D) -> D:
        """
        Method that replaces all 'null' strings with None in a provided dictionary or list.

        Must be called with either a dictionary or a list, not both.

        Parameters
        ----------
        data : dict | list
            The dictionary or list to replace 'null' strings with None

        Returns
        -------
        dict | list
            The dictionary or list with 'null' strings replaced with None
        """
        if isinstance(data, dict):
            for k, v in data.items():
                if isinstance(v, dict):
                    self.__replace_null_with_none(data=v)
                elif isinstance(v, list):
                    self.__replace_null_with_none(data=v)
                elif v == "null":
                    data[k] = None
        elif isinstance(data, list):
            for i in range(len(data)):
                if isinstance(data[i], dict):
                    self.__replace_null_with_none(data=data[i])
                elif isinstance(data[i], list):
                    self.__replace_null_with_none(data=data[i])
                elif data[i] == "null":
                    data[i] = None
        else:
            raise ValueError("Data must be either a dictionary or a list")

        return data

    def load_credentials(self):
        """Load the credentials from the credentials inputs.

        - If credentials are provided:
            - If the credentials are a string, decode it and load the credentials.
            - If the credentials are a dictionary, load the credentials.
        - If credentials are not provided:
            - If the custom load function is provided, use it.
            - Otherwise load the credentials from the credentials file using the default loader / location. Expects a .json file.

        """
        solution_msg = (
            "\n\nPlease reauthenticate using the `pyrevolut auth-manual` command."
        )

        # Load the credentials
        if self.creds is not None:
            if isinstance(self.creds, str):
                _creds = json.loads(base64.b64decode(self.creds).decode("utf-8"))
            else:
                _creds = self.creds
            try:
                self.credentials = ModelCreds(**_creds)
            except Exception as exc:
                raise ValueError(
                    f"Error loading credentials: {exc}. {solution_msg}"
                ) from exc
        else:
            if self.custom_load_fn is not None:
                self.credentials = self.custom_load_fn()
            else:
                try:
                    self.credentials = load_creds_fn(location=self.creds_loc)
                except FileNotFoundError as exc:
                    raise ValueError(
                        f"Credentials file not found: {exc}. {solution_msg}"
                    ) from exc
                except Exception as exc:
                    raise ValueError(
                        f"Error loading credentials: {exc}. {solution_msg}"
                    ) from exc

        # Check if the credentials are still valid
        if self.credentials.credentials_expired:
            raise ValueError(f"Credentials are expired. {solution_msg}")

        # Check if the access token is expired
        if self.credentials.access_token_expired:
            self.refresh_access_token()

    def save_credentials(self):
        """Save the credentials to the credentials file."""
        if self.custom_save_fn is not None:
            self.custom_save_fn(self.credentials)
        else:
            save_creds_fn(creds=self.credentials, location=self.creds_loc, indent=4)

    def refresh_access_token(self):
        """Refresh the access token using the refresh token.
        Will call the endpoint to refresh the access token.
        Then it will save the new access token to the credentials file.

        Parameters
        ----------
        None

        Raises
        ------
        ValueError
            If there is an error refreshing the access token.

        Returns
        -------
        None
        """
        try:
            resp = refresh_access_token(
                client=SyncClient(),
                refresh_token=self.credentials.tokens.refresh_token.get_secret_value(),
                client_assert_jwt=self.credentials.client_assert_jwt.jwt.get_secret_value(),
                sandbox=self.sandbox,
            )
            self.credentials.tokens.access_token = resp.access_token.get_secret_value()
            self.credentials.tokens.token_type = resp.token_type
            self.credentials.tokens.access_token_expiration_dt = pendulum.now(
                tz="UTC"
            ).add(seconds=resp.expires_in)

            # Save the new credentials
            self.save_credentials()
        except Exception as exc:
            raise ValueError(f"Error refreshing access token: {exc}.") from exc

required_headers: dict[str, str] property

The headers to be attached to each request

Returns:

Type Description
dict[str, str]

The headers to be attached to each request

__check_client()

Check if the client is open and that the credentials are still valid.

Raises:

Type Description
ValueError

If the client is not open or if the long-term credentials have expired

Source code in pyrevolut/client/base.py
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
def __check_client(self):
    """Check if the client is open and that the credentials are still valid.

    Raises
    ------
    ValueError
        If the client is not open or if the long-term credentials have expired
    """
    if self.client is None:
        raise RuntimeError(
            "Client is not open. Use .open() or the contextmanager to open the client."
        )

    if self.credentials.credentials_expired:
        raise ValueError(
            "Long-term credentials have expired. "
            "\n\nPlease reauthenticate using the `pyrevolut auth-manual` command."
        )

    if self.credentials.access_token_expired:
        self.refresh_access_token()

__create_headers(headers={})

Create the headers for the request by adding the required headers

Parameters:

Name Type Description Default
headers dict[str, str]

The headers for the request

{}

Returns:

Type Description
dict[str, str]

The headers for the request

Source code in pyrevolut/client/base.py
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
def __create_headers(self, headers: dict[str, str] = {}) -> dict[str, str]:
    """Create the headers for the request by adding the required headers

    Parameters
    ----------
    headers : dict[str, str]
        The headers for the request

    Returns
    -------
    dict[str, str]
        The headers for the request
    """
    headers.update(self.required_headers)
    return headers

__init__(creds_loc='credentials/creds.json', creds=None, sandbox=True, return_type='dict', error_response='raise', custom_save_fn=None, custom_load_fn=None)

Create a new Revolut client

Parameters:

Name Type Description Default
creds_loc str

The location of the credentials file, by default "credentials/creds.json". If the creds input is not provided, will load the credentials from this file.

'credentials/creds.json'
creds str | dict

The credentials to use for the client, by default None. If not provided, will load the credentials from the creds_loc file. Can be a dictionary of the credentials or a base64 encoded string of the credentials json.

None
sandbox bool

Whether to use the sandbox environment, by default True

True
return_type Literal['raw', 'dict', 'model']

The return type for the API responses, by default "dict" If "raw": The raw response will be returned If "dict": The response will be the dictionary representation of the Pydantic model. So it will have UUIDs, pendulum DateTimes, etc instead of the raw string values. If "model": The response will be a Pydantic model containing all processed response data.

'dict'
error_response Literal['raw', 'raise', 'dict', 'model']

How the client should handle error responses, by default "raise" If "raw": The client will return the raw error response If "raise": The client will raise a ValueError if the response is an error If "dict": The client will return a dictionary representation of the error response If "model": The client will return a Pydantic model of the error response

'raise'
custom_save_fn Callable[[ModelCreds], None]

A custom function to save the credentials, by default None

None
custom_load_fn Callable[..., ModelCreds]

A custom function to load the credentials, by default None

None
Source code in pyrevolut/client/base.py
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
def __init__(
    self,
    creds_loc: str = "credentials/creds.json",
    creds: str | dict | None = None,
    sandbox: bool = True,
    return_type: Literal["raw", "dict", "model"] = "dict",
    error_response: Literal["raw", "raise", "dict", "model"] = "raise",
    custom_save_fn: Callable[[ModelCreds], None] | None = None,
    custom_load_fn: Callable[..., ModelCreds] | None = None,
):
    """Create a new Revolut client

    Parameters
    ----------
    creds_loc : str, optional
        The location of the credentials file, by default "credentials/creds.json".
        If the creds input is not provided, will load the credentials from this file.
    creds : str | dict, optional
        The credentials to use for the client, by default None. If not provided, will
        load the credentials from the creds_loc file.
        Can be a dictionary of the credentials or a base64 encoded string of the credentials json.
    sandbox : bool, optional
        Whether to use the sandbox environment, by default True
    return_type : Literal["raw", "dict", "model"], optional
        The return type for the API responses, by default "dict"
        If "raw":
            The raw response will be returned
        If "dict":
            The response will be the dictionary representation of the Pydantic model.
            So it will have UUIDs, pendulum DateTimes, etc instead of the raw string values.
        If "model":
            The response will be a Pydantic model containing all processed response data.
    error_response : Literal["raw", "raise", "dict", "model"], optional
        How the client should handle error responses, by default "raise"
        If "raw":
            The client will return the raw error response
        If "raise":
            The client will raise a ValueError if the response is an error
        If "dict":
            The client will return a dictionary representation of the error response
        If "model":
            The client will return a Pydantic model of the error response
    custom_save_fn : Callable[[ModelCreds], None], optional
        A custom function to save the credentials, by default None
    custom_load_fn : Callable[..., ModelCreds], optional
        A custom function to load the credentials, by default None
    """
    assert return_type in [
        "raw",
        "dict",
        "model",
    ], "return_type must be 'raw', 'dict', or 'model'"
    assert error_response in [
        "raise",
        "dict",
        "model",
    ], "error_response must be 'raise', 'dict', or 'model'"
    assert ".json" in creds_loc, "creds_loc must be a .json file"

    self.creds_loc = creds_loc
    self.creds = creds
    self.sandbox = sandbox
    self.return_type = return_type
    self.error_response = error_response
    self.custom_save_fn = custom_save_fn
    self.custom_load_fn = custom_load_fn

    # Set domain based on environment
    if self.sandbox:
        self.domain = "https://sandbox-b2b.revolut.com/api"
    else:
        self.domain = "https://b2b.revolut.com/api"

    # Load the credentials
    self.load_credentials()

    # Load the endpoints
    self.load_endpoints()

__process_path(path)

Process the path.

If 'http' not in the path: Removing the leading slash if it exists Else: Return the path as is

Parameters:

Name Type Description Default
path str

The path to process

required

Returns:

Type Description
str

The processed path

Source code in pyrevolut/client/base.py
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
def __process_path(self, path: str) -> str:
    """Process the path.

    If 'http' not in the path:
        Removing the leading slash if it exists
    Else:
        Return the path as is

    Parameters
    ----------
    path : str
        The path to process

    Returns
    -------
    str
        The processed path
    """
    if "http" in path:
        return path

    return self.__remove_leading_slash(path=path)

__remove_leading_slash(path)

Remove the leading slash from a path if it exists and return it without the leading slash

Parameters:

Name Type Description Default
path str

The path to remove the leading slash from

required

Returns:

Type Description
str

The path without the leading slash

Source code in pyrevolut/client/base.py
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
def __remove_leading_slash(self, path: str) -> str:
    """Remove the leading slash from a path if it exists and
    return it without the leading slash

    Parameters
    ----------
    path : str
        The path to remove the leading slash from

    Returns
    -------
    str
        The path without the leading slash
    """
    if path.startswith("/"):
        return path[1:]
    return path

__replace_null_with_none(data)

Method that replaces all 'null' strings with None in a provided dictionary or list.

Must be called with either a dictionary or a list, not both.

Parameters:

Name Type Description Default
data dict | list

The dictionary or list to replace 'null' strings with None

required

Returns:

Type Description
dict | list

The dictionary or list with 'null' strings replaced with None

Source code in pyrevolut/client/base.py
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
def __replace_null_with_none(self, data: D) -> D:
    """
    Method that replaces all 'null' strings with None in a provided dictionary or list.

    Must be called with either a dictionary or a list, not both.

    Parameters
    ----------
    data : dict | list
        The dictionary or list to replace 'null' strings with None

    Returns
    -------
    dict | list
        The dictionary or list with 'null' strings replaced with None
    """
    if isinstance(data, dict):
        for k, v in data.items():
            if isinstance(v, dict):
                self.__replace_null_with_none(data=v)
            elif isinstance(v, list):
                self.__replace_null_with_none(data=v)
            elif v == "null":
                data[k] = None
    elif isinstance(data, list):
        for i in range(len(data)):
            if isinstance(data[i], dict):
                self.__replace_null_with_none(data=data[i])
            elif isinstance(data[i], list):
                self.__replace_null_with_none(data=data[i])
            elif data[i] == "null":
                data[i] = None
    else:
        raise ValueError("Data must be either a dictionary or a list")

    return data

load_credentials()

Load the credentials from the credentials inputs.

  • If credentials are provided:
    • If the credentials are a string, decode it and load the credentials.
    • If the credentials are a dictionary, load the credentials.
  • If credentials are not provided:
    • If the custom load function is provided, use it.
    • Otherwise load the credentials from the credentials file using the default loader / location. Expects a .json file.
Source code in pyrevolut/client/base.py
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
def load_credentials(self):
    """Load the credentials from the credentials inputs.

    - If credentials are provided:
        - If the credentials are a string, decode it and load the credentials.
        - If the credentials are a dictionary, load the credentials.
    - If credentials are not provided:
        - If the custom load function is provided, use it.
        - Otherwise load the credentials from the credentials file using the default loader / location. Expects a .json file.

    """
    solution_msg = (
        "\n\nPlease reauthenticate using the `pyrevolut auth-manual` command."
    )

    # Load the credentials
    if self.creds is not None:
        if isinstance(self.creds, str):
            _creds = json.loads(base64.b64decode(self.creds).decode("utf-8"))
        else:
            _creds = self.creds
        try:
            self.credentials = ModelCreds(**_creds)
        except Exception as exc:
            raise ValueError(
                f"Error loading credentials: {exc}. {solution_msg}"
            ) from exc
    else:
        if self.custom_load_fn is not None:
            self.credentials = self.custom_load_fn()
        else:
            try:
                self.credentials = load_creds_fn(location=self.creds_loc)
            except FileNotFoundError as exc:
                raise ValueError(
                    f"Credentials file not found: {exc}. {solution_msg}"
                ) from exc
            except Exception as exc:
                raise ValueError(
                    f"Error loading credentials: {exc}. {solution_msg}"
                ) from exc

    # Check if the credentials are still valid
    if self.credentials.credentials_expired:
        raise ValueError(f"Credentials are expired. {solution_msg}")

    # Check if the access token is expired
    if self.credentials.access_token_expired:
        self.refresh_access_token()

load_endpoints()

Loads all the endpoints from the api directory

Source code in pyrevolut/client/base.py
502
503
504
def load_endpoints(self):
    """Loads all the endpoints from the api directory"""
    raise NotImplementedError("load_endpoints method must be implemented")

log_request(request)

Log the request to the API

Parameters:

Name Type Description Default
request Request

The request to log

required

Returns:

Type Description
None
Source code in pyrevolut/client/base.py
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
def log_request(self, request: Request):
    """Log the request to the API

    Parameters
    ----------
    request : Request
        The request to log

    Returns
    -------
    None
    """
    logging.info(
        f"Request: {request.method} {request.url} - {request.headers} - {request.read().decode()}"
    )

log_response(response)

Log the response from the API.

Parameters:

Name Type Description Default
response Response

The response from the API

required

Returns:

Type Description
None
Source code in pyrevolut/client/base.py
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
def log_response(self, response: Response):
    """Log the response from the API.

    Parameters
    ----------
    response : Response
        The response from the API

    Returns
    -------
    None
    """
    if not response.is_error:
        logging.info(f"Response: {response.status_code} - {response.text}")
    else:
        logging.error(f"Response: {response.status_code} - {response.text}")

process_response(response, response_model, return_type=None, error_response='raise')

Processes the response and returns the desired format. Will additionally log the request and response.

Parameters:

Name Type Description Default
response Response

The HTTPX response to process

required
response_model BM

The Pydantic model to use for the response

required
return_type Literal['raw', 'dict', 'model'] | None

The return type for the API responses, by default None. If "raw": The raw response will be returned If "dict": The response will be the dictionary representation of the Pydantic model. So it will have UUIDs, pendulum DateTimes, etc instead of the raw string values. If "model": The response will be a Pydantic model containing all processed response data. If None: The default return type of the client will be used.

None
error_response Literal['raw', 'raise', 'dict', 'model'] | None

How the client should handle error responses, by default None. If "raw": The client will return the raw error response If "raise": The client will raise a ValueError if the response is an error If "dict": The client will return a dictionary representation of the error response If "model": The client will return a Pydantic model of the error response If None: The default error response type of the client will be used.

'raise'

Returns:

Type Description
BM | dict | list[BM] | list[dict]

The response in the desired format

Source code in pyrevolut/client/base.py
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
def process_response(
    self,
    response: Response,
    response_model: BM,
    return_type: Literal["raw", "dict", "model"] | None = None,
    error_response: Literal["raw", "raise", "dict", "model"] | None = "raise",
):
    """Processes the response and returns the desired format.
    Will additionally log the request and response.

    Parameters
    ----------
    response : Response
        The HTTPX response to process
    response_model : BM
        The Pydantic model to use for the response
    return_type : Literal["raw", "dict", "model"] | None, optional
        The return type for the API responses, by default None.
        If "raw":
            The raw response will be returned
        If "dict":
            The response will be the dictionary representation of the Pydantic model.
            So it will have UUIDs, pendulum DateTimes, etc instead of the raw string values.
        If "model":
            The response will be a Pydantic model containing all processed response data.
        If None:
            The default return type of the client will be used.
    error_response : Literal["raw", "raise", "dict", "model"] | None, optional
        How the client should handle error responses, by default None.
        If "raw":
            The client will return the raw error response
        If "raise":
            The client will raise a ValueError if the response is an error
        If "dict":
            The client will return a dictionary representation of the error response
        If "model":
            The client will return a Pydantic model of the error response
        If None:
            The default error response type of the client will be used.

    Returns
    -------
    BM | dict | list[BM] | list[dict]
        The response in the desired format
    """
    if return_type is None:
        return_type = self.return_type
    if error_response is None:
        error_response = self.error_response

    # Log the request
    self.log_request(request=response.request)

    # Log the response
    self.log_response(response=response)

    # Check for error response
    if response.is_error:
        if error_response == "raise":
            try:
                response.raise_for_status()
            except TimeoutException as exc:
                raise PyRevolutTimeoutError() from exc
            except NetworkError as exc:
                raise PyRevolutNetworkError() from exc
            except HTTPError as exc:
                if response.status_code == 400:
                    raise PyRevolutBadRequest() from exc
                elif response.status_code == 401:
                    raise PyRevolutUnauthorized() from exc
                elif response.status_code == 403:
                    raise PyRevolutForbidden() from exc
                elif response.status_code == 404:
                    raise PyRevolutNotFound() from exc
                elif response.status_code == 405:
                    raise PyRevolutMethodNotAllowed() from exc
                elif response.status_code == 406:
                    raise PyRevolutNotAcceptable() from exc
                elif response.status_code == 409:
                    raise PyRevolutConflict() from exc
                elif response.status_code == 429:
                    raise PyRevolutTooManyRequests() from exc
                elif response.status_code == 500:
                    raise PyRevolutInternalServerError() from exc
                elif response.status_code == 503:
                    raise PyRevolutServerUnavailable() from exc
                raise PyRevolutBaseException() from exc
        elif error_response == "raw":
            return response.json()
        elif error_response == "dict":
            return ModelError(**response.json()).model_dump()
        elif error_response == "model":
            return ModelError(**response.json())
        else:
            raise ValueError(f"Invalid error response type: {error_response}")

    # Raw response
    try:
        raw_response = response.json()
    except json.JSONDecodeError:
        raw_response = {}
    if return_type == "raw":
        return raw_response

    # Dict response
    if isinstance(raw_response, list):
        model_response = [response_model(**resp) for resp in raw_response]
    else:
        model_response = response_model(**raw_response)
    if return_type == "dict":
        if isinstance(model_response, list):
            return [resp.model_dump() for resp in model_response]
        return model_response.model_dump()

    # Model response
    if return_type == "model":
        return model_response

refresh_access_token()

Refresh the access token using the refresh token. Will call the endpoint to refresh the access token. Then it will save the new access token to the credentials file.

Parameters:

Name Type Description Default
None
required

Raises:

Type Description
ValueError

If there is an error refreshing the access token.

Returns:

Type Description
None
Source code in pyrevolut/client/base.py
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
def refresh_access_token(self):
    """Refresh the access token using the refresh token.
    Will call the endpoint to refresh the access token.
    Then it will save the new access token to the credentials file.

    Parameters
    ----------
    None

    Raises
    ------
    ValueError
        If there is an error refreshing the access token.

    Returns
    -------
    None
    """
    try:
        resp = refresh_access_token(
            client=SyncClient(),
            refresh_token=self.credentials.tokens.refresh_token.get_secret_value(),
            client_assert_jwt=self.credentials.client_assert_jwt.jwt.get_secret_value(),
            sandbox=self.sandbox,
        )
        self.credentials.tokens.access_token = resp.access_token.get_secret_value()
        self.credentials.tokens.token_type = resp.token_type
        self.credentials.tokens.access_token_expiration_dt = pendulum.now(
            tz="UTC"
        ).add(seconds=resp.expires_in)

        # Save the new credentials
        self.save_credentials()
    except Exception as exc:
        raise ValueError(f"Error refreshing access token: {exc}.") from exc

save_credentials()

Save the credentials to the credentials file.

Source code in pyrevolut/client/base.py
686
687
688
689
690
691
def save_credentials(self):
    """Save the credentials to the credentials file."""
    if self.custom_save_fn is not None:
        self.custom_save_fn(self.credentials)
    else:
        save_creds_fn(creds=self.credentials, location=self.creds_loc, indent=4)