標籤:ima not images user 一個 資料庫 mongo less 入門
Python代碼:
1 import pymongo 2 3 # 擷取本地連接埠,啟用mongo用戶端 4 client = pymongo.MongoClient(‘localhost‘,27017) 5 6 # 建立一個資料庫 7 mydata = client[‘mydata‘] 8 9 # 建立一個表單10 sheet_tab_one = mydata[‘sheet_tab_one‘]11 12 # 處理一個本地的txt文檔,然後把常值內容全部讀取,然後文本資料結構化,並儲存每行的文字數,也存出起來13 # /Users/HeYang/Desktop/含有常值內容的文字檔.txt14 15 # path = ‘/Users/HeYang/Desktop/長江電力分析報告.txt‘16 # with open(path,‘r‘) as f:17 # lines = f.readlines()18 # for index,line in enumerate(lines):19 # if len(line.split())>0 :20 # data = {21 # ‘index‘:index,22 # ‘line‘:line,23 # ‘words‘:len(line.split())24 # }25 # print(data)26 # sheet_tab_one.insert_one(data)27 28 # 表插入資料的方法insert_one,會不清除原有的資料,重複添加進去29 30 # 展示資料庫中的資料31 # $lt $lte $gt $gte $ne,32 # 依次等價於< <= > >= !=33 # l表示less,g表示greater e表示equal n表示not34 for item in sheet_tab_one.find({‘index‘:{‘$lt‘:5}}):35 print(item)
下面是關於資料庫的操作符,需要熟悉並記下來常用的:
Python的資料庫mongoDB的入門操作