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
- Instances of the client are unconditionally thread-safe.
72
72
73
73
## Prerequisites
@@ -84,13 +84,13 @@ project:
84
84
To install, use `pip` or `easy_install`:
85
85
86
86
```bash
87
-
pip install --upgrade "ibmcloudant>=0.10.6"
87
+
pip install --upgrade "ibmcloudant>=0.10.7"
88
88
```
89
89
90
90
or
91
91
92
92
```bash
93
-
easy_install --upgrade "ibmcloudant>=0.10.6"
93
+
easy_install --upgrade "ibmcloudant>=0.10.7"
94
94
```
95
95
96
96
## Using the SDK
@@ -103,16 +103,16 @@ account.
103
103
104
104
There are several ways to **set** these authentication properties:
105
105
106
-
1. As [environment variables](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/docs/Authentication.md#authentication-with-environment-variables)
107
-
2. The [programmatic approach](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/docs/Authentication.md#programmatic-authentication)
108
-
3. With an [external credentials file](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/docs/Authentication.md#authentication-with-external-configuration)
106
+
1. As [environment variables](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/docs/Authentication.md#authentication-with-environment-variables)
107
+
2. The [programmatic approach](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/docs/Authentication.md#programmatic-authentication)
108
+
3. With an [external credentials file](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/docs/Authentication.md#authentication-with-external-configuration)
109
109
110
110
The following section describes the different authentication types and provides environment variable examples.
111
111
Examples for other configuration methods are available by following the provided links.
112
112
113
113
### Authentication
114
114
115
-
Consult the [authentication document](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/docs/Authentication.md)
115
+
Consult the [authentication document](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/docs/Authentication.md)
116
116
for comprehensive details of all the available authentication methods and how to configure them with environment settings
[More tutorial examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/docs/Examples.md) for creating a database
161
+
[More tutorial examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/docs/Examples.md) for creating a database
162
162
and document create, read, update and delete operations.
163
163
164
-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/examples#examples-for-python).
164
+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/examples#examples-for-python).
165
165
166
166
### Error handling
167
167
@@ -184,7 +184,7 @@ Response byte stream is supported in functions with the suffix of `_as_stream`.
184
184
The returned byte stream allows the response body to be consumed
185
185
without triggering JSON unmarshalling that is typically performed by the SDK.
186
186
187
-
The [update document](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/docs/Examples.md#3-update-your-previously-created-document) section
187
+
The [update document](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/docs/Examples.md#3-update-your-previously-created-document) section
188
188
contains examples for both request and response byte stream cases.
189
189
190
190
The API reference contains further examples of using byte streams.
@@ -317,7 +317,7 @@ If you encounter an issue with the project, you are welcome to submit a
317
317
318
318
Before you submit a bug report, search for
319
319
[similar issues](https://github.com/IBM/cloudant-python-sdk/issues?q=is%3Aissue) and review the
320
-
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
320
+
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
321
321
322
322
Please consult the [security policy](https://github.com/IBM/cloudant-python-sdk/security/policy) before opening security related issues.
323
323
@@ -347,8 +347,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page.
347
347
348
348
## Contributing
349
349
350
-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/CONTRIBUTING.md).
350
+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/CONTRIBUTING.md).
351
351
352
352
## License
353
353
354
-
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/LICENSE).
354
+
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/LICENSE).
Copy file name to clipboardExpand all lines: docs/Examples.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,4 +324,4 @@ You have deleted the document.
324
324
325
325
## Further code examples
326
326
327
-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/examples#examples-for-python).
327
+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/examples#examples-for-python).
Copy file name to clipboardExpand all lines: docs/Pagination.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,22 +71,22 @@ then a `429 Too Many Requests` error occurs.
71
71
Pagination is available for these operations:
72
72
* Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postalldocs)
73
73
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionalldocs)
74
-
*[Global all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/test/examples/src/features/pagination/AllDocsPagination.py)
75
-
*[Partitioned all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.6/test/examples/src/features/pagination/partition_all_docs_pagination.py)
74
+
*[Global all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/test/examples/src/features/pagination/AllDocsPagination.py)
75
+
*[Partitioned all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.7/test/examples/src/features/pagination/partition_all_docs_pagination.py)
76
76
* Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=python#postdesigndocs)
0 commit comments