Last modified by Leon Poon on 2021/03/23 13:17

Hide last authors
Leon Poon 6.1 1 First, [[set up a virtualenv>>doc:Computing Newbies.Python Newbies.How to Create a VirtualEnv.WebHome]].
Leon Poon 1.1 2
Leon Poon 5.1 3 Make sure that your [[mongo server is running>>doc:Computing Newbies.How to connect to mongo server.WebHome]].
Leon Poon 1.1 4
Leon Poon 7.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:Computing Newbies.Python Newbies.How to Run a Python Script in a VirtualEnv.WebHome]].
Leon Poon 1.1 6
7 {{code language="python"}}
8 from pymongo import MongoClient
9 client = MongoClient()
10 db = client['test-database']
11 collection = db['test-collection']
12 print(collection.insert_one({'my_key': 'some value'}))
13 {{/code}}
14
Leon Poon 8.1 15 The printout shows the ID assigned by mongodb to the data you stored. You can now try to [[look it up>>doc:Computing Newbies.Python Newbies.How to Use Pymongo and Search for Data.WebHome]].
Leon Poon 1.1 16
17 You can also follow [[tutorial>>url:https://api.mongodb.com/python/current/tutorial.html%7Cthis]].