@@ -54,6 +54,7 @@ Changes might occur which impact applications that use this SDK.
5454 + [ 3. Update your previously created document] ( #3-update-your-previously-created-document )
5555 + [ 4. Delete your previously created document] ( #4-delete-your-previously-created-document )
5656 * [ Error handling] ( #error-handling )
57+ * [ Raw IO] ( #raw-io )
5758 * [ Further resources] ( #further-resources )
5859- [ Questions] ( #questions )
5960- [ Issues] ( #issues )
@@ -90,6 +91,7 @@ project:
9091 applications.
9192- Handles the authentication.
9293- Familiar user experience of IBM Cloud SDKs.
94+ - Flexibility to use either built-in models or byte-based requests and responses for documents.
9395- Instances of the client are unconditionally thread-safe.
9496
9597## Prerequisites
@@ -514,6 +516,17 @@ You have deleted the document.
514516For sample code on handling errors, please see
515517[ Cloudant API docs] ( https://cloud.ibm.com/apidocs/cloudant?code=python#error-handling ) .
516518
519+ ### Raw IO
520+
521+ For endpoints that read or write document content it is possible to bypass
522+ usage of the built-in models and send or receive a bytes response.
523+ For examples of using byte streams, see the API reference documentation
524+ ("Example request as a stream" section).
525+
526+ - [ Bulk modify multiple documents in a database] ( https://cloud.ibm.com/apidocs/cloudant?code=python#postbulkdocs )
527+ - [ Query a list of all documents in a database] ( https://cloud.ibm.com/apidocs/cloudant?code=python#postalldocs )
528+ - [ Query the database document changes feed] ( https://cloud.ibm.com/apidocs/cloudant?code=python#postchanges )
529+
517530### Further resources
518531
519532- [ Cloudant API docs] ( https://cloud.ibm.com/apidocs/cloudant?code=python ) :
0 commit comments