- Python MongoDB Tutorial
- Python MongoDB - Home
- Python MongoDB - Introduction
- Python MongoDB - Create Database
- Python MongoDB - Create Collection
- Python MongoDB - Insert Document
- Python MongoDB - Find
- Python MongoDB - Query
- Python MongoDB - Sort
- Python MongoDB - Delete Document
- Python MongoDB - Drop Collection
- Python MongoDB - Update
- Python MongoDB - Limit
- Python MongoDB Useful Resources
- Python MongoDB - Quick Guide
- Python MongoDB - Useful Resources
- Python MongoDB - Discussion
Python MongoDB - 简介
Pymongo 是一个 Python 发行版,它提供了使用 MongoDB 的工具,它是从 Python 与 MongoDB 数据库通信的首选方式。
安装
要安装 pymongo,首先请确保您已正确安装 python3(以及 PIP)和 MongoDB。然后执行以下命令。
C:\WINDOWS\system32>pip install pymongo Collecting pymongo Using cached https://files.pythonhosted.org/packages/cb/a6/b0ae3781b0ad75825e00e29dc5489b53512625e02328d73556e1ecdf12f8/pymongo-3.9.0-cp37-cp37m-win32.whl Installing collected packages: pymongo Successfully installed pymongo-3.9.0
确认
安装 pymongo 后,打开一个新的文本文档,将以下行粘贴到其中,然后将其另存为 test.py。
import pymongo
如果你已经正确安装了 pymongo,如果你执行如下所示的 test.py,你应该不会遇到任何问题。
D:\Python_MongoDB>test.py D:\Python_MongoDB>