Changes for page How to Use Pymongo to Store Data
Last modified by Leon Poon on 2021/03/23 13:17
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Parent
-
... ... @@ -1,1 +1,1 @@ 1 - Computing Newbies.Python Newbies.WebHome1 +Main.WebHome - Content
-
... ... @@ -1,8 +1,8 @@ 1 -First, [[set up a virtualenv>>doc: Computing Newbies.Python Newbies.How to Create a VirtualEnv.WebHome]].1 +First, [[set up a virtualenv>>doc:Main.How to Create a VirtualEnv.WebHome]]. 2 2 3 -Make sure that your [[mongo server is running>> doc:Computing Newbies.How.WebHome]].3 +Make sure that your [[mongo server is running>>url:https://wiki.codepowered.com/wiki/How_to_connect_to_mongo_server]]. 4 4 5 -[[In the virtualenv, install pymongo>> doc:Computing Newbies.Python Newbies.How.WebHome]], then try out this .py file [[in the virtualenv>>doc:Computing Newbies.Python Newbies.How.WebHome]].5 +[[In the virtualenv, install pymongo>>url:https://wiki.codepowered.com/wiki/How_to_add_libraries_to_a_virtualenv]], then try out this .py file [[in the virtualenv>>url:https://wiki.codepowered.com/wiki/How_to_Run_a_Python_Script_in_a_VirtualEnv]]. 6 6 7 7 {{code language="python"}} 8 8 from pymongo import MongoClient ... ... @@ -12,6 +12,6 @@ 12 12 print(collection.insert_one({'my_key': 'some value'})) 13 13 {{/code}} 14 14 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.WebHome]].15 +The printout shows the ID assigned by mongodb to the data you stored. You can now try to [[look it up>>url:https://wiki.codepowered.com/wiki/How_to_Use_Pymongo_and_Search_for_Data]]. 16 16 17 17 You can also follow [[tutorial>>url:https://api.mongodb.com/python/current/tutorial.html%7Cthis]].