I have to extract data from a Notes database automatically for a data pipeline validation. With HCL Notes I was able to connect to the database, so I know the access works. I have the following information to access the database: host (I got both hostname and ip address), domino server name, database name (.nsf filename) I tried the noteslib library in the below way:
import noteslib
db = noteslib.Database('domino server name','db filename.nsf')
I also tried adding the host to the server parameter instead, but it does not work. I receive this error:
Error connecting to ...Double-check the server and database file names, and make sure you have
read access to the database.
My question is how can I add the host and the domino server name as well (if it is required)? Notes HCL authenticates me before accessing the database using the domino server name and the .nsf file. I tried adding the password parameter to the end, but also without luck. I am on company VPN, so that also should not be an issue.