client = pymongo.MongoClient(host='localhost', port=27017) # 连接 db = client['数据库名']['表名'] db.ensure_index('name', unique=True) # 创建索引,name是字段名称
版权声明:本文为qq_39138295原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
client = pymongo.MongoClient(host='localhost', port=27017) # 连接 db = client['数据库名']['表名'] db.ensure_index('name', unique=True) # 创建索引,name是字段名称