Skip to content

Commit aaa8a2f

Browse files
author
Sharon Shabtai
authored
Merge pull request #37 from jeffbr/patch-3
Changed "Ds3Client" to "Client" to correctly match code
2 parents 054e4b2 + 850b11e commit aaa8a2f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,26 @@ for bucket in getServiceResponse.result['BucketList']:
4040
print bucket['Name']
4141
```
4242

43-
Ds3Client
43+
Client
4444
---------
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:
4646

4747
* `DS3_ENDPOINT` - The URL to the DS3 Endpoint
4848
* `DS3_ACCESS_KEY` - The DS3 access key
4949
* `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
5151

52-
The `Ds3Client` instance can also be created manually in code with:
52+
The `Client` instance can also be created manually in code with:
5353

5454
```python
5555

5656
from ds3 import ds3
5757

58-
client = ds3.Ds3Client("endpoint", ds3.Credentials("access_key", "secret_key"))
58+
client = ds3.Client("endpoint", ds3.Credentials("access_key", "secret_key"))
5959

6060
```
6161

62-
The proxy URL can be passed in as the named parameter `proxy` to `Ds3Client()`.
62+
The proxy URL can be passed in as the named parameter `proxy` to `Client()`.
6363

6464
Putting Data
6565
------------

0 commit comments

Comments
 (0)