from pymongo import MongoClient
m = MongoClient("192.168.0.109",27017)[ $dbname][ $table_name].
增: m.insert({ $insert_new_dic })
删: m.remove({ $query_dic })
改: m.update({ $query_dic, $update_new_dic })
查: find({ $query_dic }) , 查找数目:m.count({ $query_dic })