Skip to content

Commit d6d1eff

Browse files
Merge pull request #22 from Volsund/feature/update-gc-domains
Update outdated URLs to GoCardless
2 parents 89fb29c + edaa185 commit d6d1eff

11 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ If applicable, add screenshots to help explain your problem.
2424
**Additional context**
2525
Add any other context about the problem here.
2626

27-
If you're having general trouble with your Nordigen integration or bank related issue, please reach out to our support via email [support@nordigen.com](support@nordigen.com)
27+
If you're having general trouble with your Nordigen integration or bank related issue, please reach out to our support via email [bank-account-data-support@gocardless.com](bank-account-data-support@gocardless.com)

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.3.2] - 2023-06-21
4+
5+
- Update URLs to represent GoCardless
6+
37
## [1.3.1] - 2023-03-13
48

59
- Add the response in the response kwargs when instantiating the `HTTPError`

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Nordigen Python
22

3-
This is official Python client library for [Nordigen](https://nordigen.com/en) API
3+
This is official Python client library for [GoCardless Bank Account Data](https://gocardless.com/bank-account-data/) API
44

5-
For a full list of endpoints and arguments, see the [docs](https://nordigen.com/en/account_information_documenation/api-documention/overview/).
5+
For a full list of endpoints and arguments, see the [docs](https://developer.gocardless.com/bank-account-data/quick-start-guide).
66

7-
Before starting to use API you will need to create a new secret and get your `SECRET_ID` and `SECRET_KEY` from the [Nordigen's Open Banking Portal](https://ob.nordigen.com/user-secrets/).
7+
Before starting to use API you will need to create a new secret and get your `SECRET_ID` and `SECRET_KEY` from the [GoCardless Bank Account Data Portal](https://bankaccountdata.gocardless.com/user-secrets/).
88

99
## Requirements
1010

@@ -62,7 +62,7 @@ init = client.initialize_session(
6262
# institution id
6363
institution_id=institution_id,
6464
# redirect url after successful authentication
65-
redirect_uri="https://nordigen.com",
65+
redirect_uri="https://gocardless.com",
6666
# additional layer of unique ID defined by you
6767
reference_id=str(uuid4())
6868
)
@@ -119,4 +119,4 @@ premium_details = account.get_premium_details()
119119

120120
## Support
121121

122-
For any inquiries please contact support at [support@nordigen.com](support@nordigen.com) or create an issue in repository.
122+
For any inquiries please contact support at [bank-account-data-support@gocardless.com](bank-account-data-support@gocardless.com) or create an issue in repository.

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Set-up
44

5-
You'll need to get your `SECRET_ID` and `SECRET_KEY` from the [Nordigen's Open Banking Portal](https://ob.nordigen.com/).
5+
You'll need to get your `SECRET_ID` and `SECRET_KEY` from the [GoCardless' Bank Account Data Portal](https://bankaccountdata.gocardless.com/).
66
In **app.py** file provide the token as a parameter for `NordigenClient`.
77

88
```python

example/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Select your bank:</h2>
2323
<script src="https://unpkg.com/nordigen-bank-ui@1.0.1/package/src/selector.js"></script>
2424
<script>
2525
const config = {
26-
redirectUrl: 'https://www.nordigen.com',
26+
redirectUrl: 'https://www.gocardless.com',
2727
logoUrl: 'https://cdn.nordigen.com/ais/Nordigen_Logo_Black.svg'
2828
};
2929

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main():
2525
# institution id
2626
institution_id=institution_id,
2727
# redirect url after successful authentication
28-
redirect_uri="https://nordigen.com",
28+
redirect_uri="https://gocardless.com",
2929
# additional layer of unique ID defined by you
3030
reference_id=str(uuid4()),
3131
)

nordigen/api/requisitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def create_requisition(
6060
enduser_id (str): a unique end-user ID of someone who's using your services, usually it's a UUID
6161
agreements (List[str] or str optional): agreement is provided as a string.
6262
user_language (str, optional): to enforce a language for all end user steps hosted
63-
by Nordigen passed as a two-letter country code. Defaults to None
63+
by GoCardless passed as a two-letter country code. Defaults to None
6464
6565
Returns:
6666
Requisition: [description]

nordigen/nordigen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(
3232
secret_key: str,
3333
secret_id: str,
3434
timeout: int = 10,
35-
base_url: str = "https://ob.nordigen.com/api/v2"
35+
base_url: str = "https://ob.gocardless.com/api/v2"
3636
) -> None:
3737
self.secret_key = secret_key
3838
self.secret_id = secret_id

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tool.poetry]
22
name = "nordigen"
3-
version = "1.3.1"
4-
description = "Python client for Nordigen API"
5-
authors = ["Nordigen Solutions <support@nordigen.com>"]
3+
version = "1.3.2"
4+
description = "Python client for GoCardless Bank Account Data API"
5+
authors = ["Nordigen Solutions <bank-account-data-support@gocardless.com>"]
66
license = "MIT"
77
homepage = "https://github.com/nordigen/nordigen-python"
88
repository = "https://github.com/nordigen/nordigen-python"
99
readme = "README.md"
10-
keywords = ["Nordigen", "Nordigen API", "OpenBanking"]
10+
keywords = ["GoCardless", "Nordigen", "Nordigen API", "OpenBanking"]
1111
include = ["CHANGELOG.md", "README.md", "LICENSE", "./nordigen/**/*"]
1212

1313
[tool.poetry.dependencies]

tests/mocks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ def generate_mock(id):
1313
{
1414
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
1515
"created": "2022-02-21T15:41:40.350Z",
16-
"redirect": "https://nordigen.com",
16+
"redirect": "https://gocardless.com",
1717
},
1818
{
1919
"id": id,
2020
"created": "2022-02-21T15:41:40.350Z",
21-
"redirect": "https://nordigen.com",
21+
"redirect": "https://gocardless.com",
2222
},
2323
],
2424
}

0 commit comments

Comments
 (0)