-
Notifications
You must be signed in to change notification settings - Fork 132
Cannot use mongokit with either python3 or python2 #251
Comments
I think that sadly MongoKit is dead see issue #182. There haven't been any updates in months, it is failing because it doesn't support pymongo 3+ which is the version that gets pulled down or python 3. There is MongoKat which looks like it might be picking up where MongoKit left off but it also seems to have died off since there hasn't been any activity since March. |
I have in fact switched to using Mongokat, which is nice, but not as full featured as Mongokit. Might as well leave the issue open in case one day things change. |
@evilhamsterman MongoKat is definitely not dead, it's used in production, actively supported and we just merged Python 3 support :-) |
For python 2.x downgrade pymongo to 2.8: For python 3.x install mongokit-py3 : |
pip install mongokit-py3, give me error : ModuleNotFoundError: No module named 'pymongo.master_slave_connection' |
In python3 doing
from mongokit import Document, Connection
gives meand in python2, running the same import gives
I'm having trouble getting a clear picture of mongokit's status on python3.
The text was updated successfully, but these errors were encountered: