from PyZ3950 import zoom
conn = zoom.Connection ('z3950.iacentre.com', 210,user='gaurishankar')
conn.databaseName = 'itke'
conn.preferredRecordSyntax = 'USMARC'
query = zoom.Query ('CCL', 'mango')
res = conn.search (query)
print res [0]
This is my code and I am not able to make connection with database.
This is the answer