-
-
Save vfulco/6ee6aa254f863ab09e2d to your computer and use it in GitHub Desktop.
Sample Python for running a full-text search using PyMongo
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
from pymongo import Connection | |
if __name__ == '__main__': | |
# Connect to mongo | |
conn = Connection() | |
db = conn['canepi'] | |
# Set the search term | |
term = 'foo' | |
# Run the search | |
results = db.command('text', 'healthmap', search=term) | |
# Print the results | |
print(results) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment