client = MongoClient("mongodb://localhost:27017")
db = client.examples
def skip_lines(input_file, skip):
for i in range(0, skip):
next(input_file)
def audit_country(input_file):
for row in input_file:
country = row['country_label']
country = country.strip()
if (country == "NULL") or (country == ""):
continue
if db.countires.find({ "name" ; country }).count() != 1:
print "Not found:", country
if __name__ == '__main__':