Python MongoDB 数据库连接 - PyMongo 驱动
python mongodb 数据库连接 - pymongo 驱动
mongodb 是常用的 nosql 数据库之一,使用的数据类型 bson(类似 json)。
python 要连接 mongodb 需要 mongodb 驱动,这里我们使用 pymongo 驱动来连接。
pip 安装
pip 是一个通用的 python 包管理工具,提供了对 python 包的查找、下载、安装、卸载的功能。
安装 pymongo:
$ python3 -m pip3 install pymongo
也可以指定安装的版本:
$ python3 -m pip3 install pymongo==3.5.1
更新 pymongo 命令:
$ python3 -m pip3 install --upgrade pymongo
easy_install 安装
旧版的 python 可以使用 easy_install 来安装,easy_install 也是 python 包管理工具。
$ python -m easy_install pymongo
更新 pymongo 命令:
$ python -m easy_install -u pymongo
测试 pymongo
接下来我们可以创建一个测试文件 demo_test_mongodb.py,代码如下:
demo_test_mongodb.py 文件代码:
#!/usr/bin/python3 import pymongo
相关文章
- Python 环境搭建
- Python 中文编码
- Python for 循环语句
- Python 字典 Dictionary
- Python CGI编程
- Python JSON
- Python 数组
- Python 列表
- Python 节点
- Python Deque
- Python 排序算法
- Python 搜索算法
- Python3 环境搭建
- Python3 数据类型
- Python3 字符串(String)
- Python3 字典(Dictionary)
- Python3 if else 语句
- Python3 面向对象
- Python3 正则表达式
- Python3 MySQL 数据库连接 - PyMySQL 驱动