python3.4支持mongodb3.x吗

2025-01-20 12:02:53
推荐回答(4个)
回答1:

python3.4是支持mongodb3.x的。
如果是要用纯python来操作mongodb是没有问题的,但是如果具体到某些框架下,就不一定了,要看这个框架,有没有提供,用来操作这种类型的数据库的库。

回答2:

支持,安装pymongo,python链接mongodb的第三方库

回答3:

你应该问的是pymongo模块能在python3.x使用对吧?

这是说明。
PyMongo supports Python 3.x where x >= 2.

这是证据:
Python 3.2.5 (default, Feb 26 2014, 12:40:25)
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymongo
>>> c = pymongo.MongoClient()
>>> c.test.bintest.insert_one({'binary': b'this is a byte string'}).inserted_id
ObjectId('4f9086b1fba5222021000000')
>>> c.test.bintest.find_one()
{'binary': b'this is a byte string', '_id': ObjectId('4f9086b1fba5222021000000')

回答4:

支持!我猜的