MongoLab/PyMongo connection error

后端 未结 3 1786
傲寒
傲寒 2021-02-04 13:33

If I run in the shell:

mongo ds0219xx.mlab.com:219xx/dbname -u user -p pass

It works and allows me to connect to the database and pull informat

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-04 13:46

    I figured it out. You can do this from the python file and it will work:

    connection = pymongo.MongoClient(ab123456.mlab.com, 123456)
    db = connection[databasename]
    db.authenticate(database_user, database_pass)
    

提交回复
热议问题