import pymongo
client = pymongo.MongoClient("mongodb://username:12%40password@ip:27017/sample_db")
db = client.sample_db
# print the number of documents in a collection
print(db.collection.count())
12% 40 password 表示你的密码,并假设它有一个特殊的字符(例如@- 由% 40表示)-username 是你的 mongodb 用户名,ip-你的 ip 地址和 sample _ db 是你想要连接到的 mongodb 下的数据库。