Mongodb – Fetching Data based on conditions using pymongo
I am trying to fetch data based on filter based queries. Right now I am using filter_stuff = {'url': 1, 'organization_name': 1, 'hum_pred':1, 'ml_pred':1, '_id': 0} myData = list(crawlcol.find({'hum_pred': 'null'}, filter_stuff)) This will fetch data where hum_pred have values null.…