def __init__(self,hostname,db,collection,port=27017): self.conn = pymongo.Connection(hostname,port) self.db = self.conn[db] self.collection = collection