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 |
|
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 |
|
__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 |
|
__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 |
|
__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 |
|
__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 |
|
__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 |
|
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 |
|
load_endpoints()
Loads all the endpoints from the api directory
Source code in pyrevolut/client/base.py
502 503 504 |
|
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 |
|
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 |
|
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 |
|
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 |
|
save_credentials()
Save the credentials to the credentials file.
Source code in pyrevolut/client/base.py
686 687 688 689 690 691 |
|