Hritik Suman
Hritik Suman

Reputation: 1

how to connect IBM cloudant database to python app code already on IBM cloud(cloud foundary)?

I am using Django to create python based web application, and deployed it on IBM Cloud Foundry service, now I want to connect it with IBM cloudant to store all recorded query in cloudant databse using python.

Upvotes: 0

Views: 540

Answers (1)

chughts
chughts

Reputation: 4747

Use the https://pypi.org/project/ibmcloudant/ package. You can find documentation on IBM Cloud Docs.

On IBM Cloud there are still many examples using the cloudant library, but it is now deprecated and will be end-of-life on Dec 31 2021.

You see that it's based on couchdb, and as you are looking for a Django database - https://pypi.org/project/django-couchdb-storage/

Upvotes: 1

Related Questions