I have a bucket 'A', with scope 'B' and collection 'C'. How can i retrieve all documents from this collection from couchbase?
import pandas as pd
from couchbase_core.cluster import PasswordAuthenticator
from couchbase.cluster import Cluster, ClusterOptions, QueryOptions
cluster = Cluster('couchbase://localhost', ClusterOptions(PasswordAuthenticator('xxx', 'xxx')))
cb = cluster.bucket("A")
cb_coll = cb.scope("B").collection("C")
How can i extract all documents from this collection 'C' using python and save it into dataframe?