def find_complementary(self, filter):
"""Find a document (row) from the complementary information table.
"""
gc.collect()
db = dataset.connect(self.url)
return db[self.complementary_table_name].find_one(**filter)
文章目录