#๐ Couchbase database help connecting
4 messages ยท Page 1 of 1 (latest)
@molten flame
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
`from couchbase.cluster import Cluster
from couchbase.options import ClusterOptions
from couchbase.auth import PasswordAuthenticator
from datetime import timedelta
pa = PasswordAuthenticator('[email protected]', 'Fuwalo2004@414')
options = ClusterOptions(pa)
options.apply_profile('wan_development')
cluster = Cluster('couchbases://44.215.97.80', options)
cluster.wait_until_ready(timedelta(seconds=5))
bucket = cluster.bucket('travel-sample')
collection = bucket.scope('inventory').collection('airline')
try:
result = collection.get('airline_10')
print(result.content_as[dict])
except Exception as e:
print("exception:", e)`
@molten flame
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.