You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-22Lines changed: 18 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,7 @@
3
3
4
4
## Introduction
5
5
6
-
### ⚠️ Beta Release Notice
7
-
8
-
This version is considered a **beta release**. While we have done our best to ensure stability and functionality, there may still be bugs, incomplete features, or breaking changes in future updates.
9
-
10
-
#### Important Notes
6
+
### Important Notes
11
7
12
8
-**Available Features:** This SDK currently contains only 3 of PayPal's API endpoints. Additional endpoints and functionality will be added in the future.
13
9
-**API Changes:** Expect potential changes in APIs and features as we finalize the product.
@@ -28,15 +24,15 @@ The package is compatible with Python versions `3.7+`.
28
24
Install the package from PyPi using the following pip command:
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.7.0/doc/client.md)
35
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/1.0.0/doc/client.md)
40
36
41
37
The following parameters are configurable for the API Client:
42
38
@@ -51,8 +47,8 @@ The following parameters are configurable for the API Client:
51
47
|`backoff_factor`|`float`| A backoff factor to apply between attempts after the second try. <br> **Default: 2**|
52
48
|`retry_statuses`|`Array of int`| The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]**|
53
49
|`retry_methods`|`Array of string`| The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']**|
54
-
|`logging_configuration`|[`LoggingConfiguration`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.7.0/doc/logging-configuration.md)| The SDK logging configuration for API calls |
55
-
|`client_credentials_auth_credentials`|[`ClientCredentialsAuthCredentials`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.7.0/doc/auth/oauth-2-client-credentials-grant.md)| The credential object for OAuth 2 Client Credentials Grant |
50
+
|`logging_configuration`|[`LoggingConfiguration`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/1.0.0/doc/logging-configuration.md)| The SDK logging configuration for API calls |
51
+
|`client_credentials_auth_credentials`|[`ClientCredentialsAuthCredentials`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/1.0.0/doc/auth/oauth-2-client-credentials-grant.md)| The credential object for OAuth 2 Client Credentials Grant |
56
52
57
53
The API client can be initialized as follows:
58
54
@@ -90,22 +86,22 @@ The SDK can be configured to use a different environment for making API calls. A
90
86
91
87
This API uses the following authentication schemes.
0 commit comments