Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of connecting mongodb with python

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of the method of connecting python to mongodb, the content is detailed and easy to understand, the operation is simple and fast, and it has a certain reference value. I believe you will gain something after reading this article on the method of connecting python to mongodb. Let's take a look at it.

The specific code is as follows:

# use the pymongo module to connect to the mongoDB database # coding=utf-8from pymongo import MongoClient # to establish a MongoDB database connection client = MongoClient ('localhost',27017) # to connect to the database. Test is the collection used for the database name db=client.test # connection, which is what we usually call a table. Test is the table name collection=db.test # and then you can use collection to complete some operations on the database table # find all the data in the collection for item in collection.find (): print item # find a single data in the collection print collection.find_one () # insert data collection.insert ({name:'Tom',age:25,addr:'Cleveland'}) into the collection # update the data in the collection, the update condition is in the first curly braces The second curly braces are the updated content collection.update ({Name:'Tom'}, {Name:'Tom',age:18}) # Delete all the data in the collection collection collection.remove () # Delete the collection collectioncollection.drop () on the "python connection mongodb method" this article ends here, thank you for reading! I believe you all have some knowledge about "how to connect python to mongodb". If you want to learn more, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report