Using Python, I've been trying to connect to the couchdb where I have the company database.
import couchdb
try:
username = "admin"
password = "mypassword"
couchdb_server = couchdb.Server("http://%s:%s@localhost:5984/" % (username, password))
print(couchdb_server['company'])
except Exception as ex:
print(str(ex))
When I run the code above, I end up with the following exception:
ex={InvalidURL}nonnumeric port: '...'
Any idea why I cannot connect my couchdb server and see all my databases including the company database?