Search:

Search all manuals
Search this manual
Manual
Couchbase Client Library: Python 1.0
Community Wiki and Resources
Download Client Library
Python Client Library
SDK Forum
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
1.3 Try it Out!
Chapter Sections
Chapters

1.3.3. Working with a Bucket

The Couchbase instance is a container for Bucket instances, which based on the credentials supplied are accessible through the client's bucket collection. Using the credentials above, only the default bucket would be available to an application. If cluster credentials were supplied, then all buckets would be available.

bucket = client["default"]

CRUD operations are performed by using an instance of a Bucket.