Is there an equivalent PyMongo for Python 3.2?

I tried installing pymongo in a Windows window with Python 3.2 through easy_install , but found that it would not be installed due to incompatibility with Python 3.2.

Therefore, is there an equivalent pymongo that will work with Python 3.2? MongoDB is an integral part of the application that I developed in Python 2.7, and for the transition to Python 3.2 I will need to maintain this interactivity.

Thanks!

+8
python mongodb
source share
3 answers

Edit: This answer is deprecated. PyMongo now officially supports Python 3.


The answer has already been given in the comments, but I will give a full summary:

+14
source share

Starting with version 2.2, PyMongo supports python 3.x, where x> = 1.

http://pypi.python.org/pypi/pymongo

+7
source share
0
source share

All Articles