Skip to content

Commit 36bfd81

Browse files
authored
Merge pull request #8 from buserbrasil/rename-import-lib-name
Rename santander_client to santander_sdk
2 parents 31723e8 + ad67daf commit 36bfd81

20 files changed

+55
-55
lines changed

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pip install santander-python-sdk
1515

1616
```python
1717
from decimal import Decimal
18-
from santander_client import SantanderApiClient, SantanderClientConfiguration
18+
from santander_sdk import SantanderApiClient, SantanderClientConfiguration
1919

2020
client = SantanderApiClient(SantanderClientConfiguration(
2121
client_id="client_id",

santander_client/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

santander_sdk/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from santander_sdk.api_client.client import SantanderApiClient
2+
from santander_sdk.api_client.client_configuration import (
3+
SantanderClientConfiguration,
4+
)
5+
6+
__all__ = ["SantanderApiClient", "SantanderClientConfiguration"]
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from urllib.parse import urljoin
44
import requests
55

6-
from santander_client.api_client.workspaces import get_first_workspace_id_of_type
6+
from santander_sdk.api_client.workspaces import get_first_workspace_id_of_type
77

88
from .helpers import get_status_code_description, try_parse_response_to_json
99

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import re
66
import requests
77

8-
from santander_client.api_client.exceptions import (
8+
from santander_sdk.api_client.exceptions import (
99
SantanderRequestException,
1010
SantanderValueErrorException,
1111
)

0 commit comments

Comments
 (0)