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
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,26 +40,26 @@ for bucket in getServiceResponse.result['BucketList']:
40
40
print bucket['Name']
41
41
```
42
42
43
-
Ds3Client
43
+
Client
44
44
---------
45
-
In the ds3_python3_sdk there are two ways that you can create a `Ds3Client` instance: environment variables, or manually. `ds3.createClientFromEnv` will create a `Ds3Client` using the following environment variables:
45
+
In the ds3_python3_sdk there are two ways that you can create a `Client` instance: environment variables, or manually. `ds3.createClientFromEnv` will create a `Client` using the following environment variables:
46
46
47
47
*`DS3_ENDPOINT` - The URL to the DS3 Endpoint
48
48
*`DS3_ACCESS_KEY` - The DS3 access key
49
49
*`DS3_SECRET_KEY` - The DS3 secret key
50
-
*`http_proxy` - If set, the `Ds3Client` instance will proxy through this URL
50
+
*`http_proxy` - If set, the `Client` instance will proxy through this URL
51
51
52
-
The `Ds3Client` instance can also be created manually in code with:
52
+
The `Client` instance can also be created manually in code with:
0 commit comments