Python的資料庫mongoDB的入門操作

來源:互聯網
上載者:User

標籤: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的入門操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.