Created
April 8, 2015 17:39
-
-
Save danared/9d1432d80c6c7ebe8130 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> client = MongoClient(serverSelectionTimeoutMS=500) | |
>>> try: | |
... client.admin.command('ping') | |
... print("it's working") | |
... except pymongo.errors.ConnectionFailure: | |
... print("please start mongod") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment