Some simple operations of MongoDB

Source: Internet
Author: User

# import Pymongo   #导入pymongo库
# client = Pymongo. Mongoclient (' localhost ', 27017) connects Python with MONGO database (localhost is local)
# Walden = client[' Walden '] give the database a name on the left is the name in Python, and the right bracket is the name in the database environment
# sheet_line = walden[' sheet_line ') create a sheet of a database
# path = ' D:\BaiduNetdiskDownload\walden.txt '
# with open (path, ' R ') as F:
# lines = F.readlines () reads each line in the file
# for index,line in Enumerate (lines): The enumerate function is the location and data of the looping data
# Data ={
# ' index ': index,
# ' line ': line,
# ' words ': Len (Line.split ())
#
# }
# Sheet_line.insert_one data is loaded into the database
# $LT/$lte/$GT/$gte/$ne, in turn equivalent to </<=/>/>=/!=
# for item in Sheet_line.find ({' words ': {' $lt ': 5}}):
# Print (item)

Some simple operations for MongoDB

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.