MongoDB ODM

安装

 pip3 install mongoengine

MongoDB ODM_第1张图片

 

连接MongoDB

 方法一:简写

 connect('students)

 方法二:指定端口和地址

 connect('students',host='192.168.1.35',port=27017)

 方法三:使用URI

 connect('students',host='mongodb://localhost/students')

MongoDB ODM_第2张图片

 

  python连接

 

MongoDB ODM_第3张图片

 

转载于:https://www.cnblogs.com/goddog1024/p/11231710.html

你可能感兴趣的:(数据库,python)