Wiki source code of How to Use Pymongo and Search for Data
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
2.1 | 1 | First, [[set up a virtualenv>>doc:Main.How to Create a VirtualEnv.WebHome]]. |
![]() |
1.1 | 2 | |
![]() |
4.1 | 3 | Make sure that your [[mongo server is running>>doc:Computing Newbies.How to connect to mongo server.WebHome]]. |
![]() |
1.1 | 4 | |
![]() |
3.1 | 5 | [[In the virtualenv, install pymongo>>doc:Computing Newbies.Python Newbies.How to add libraries to a virtualenv.WebHome]], then try out this .py file [[in the virtualenv>>doc:Main.How to Run a Python Script in a VirtualEnv.WebHome]]. |
![]() |
1.1 | 6 | |
![]() |
2.1 | 7 | {{code language="python"}} |
8 | from pymongo import MongoClient | ||
![]() |
1.1 | 9 | client = MongoClient() |
10 | db = client['test-database'] | ||
11 | collection = db['test-collection'] | ||
12 | print(collection.find_one({'my_key': 'some value'})) | ||
![]() |
2.1 | 13 | {{/code}} |
![]() |
1.1 | 14 | |
![]() |
2.1 | 15 | If you don't have data yet, you can [[store some>>doc:Main.How to Use Pymongo to Store Data.WebHome]]. |
![]() |
1.1 | 16 | |
17 | You can also follow [[tutorial>>url:https://api.mongodb.com/python/current/tutorial.html%7Cthis]]. |