python模組學習 —- anydbm, shelve

來源:互聯網
上載者:User

 

    好久沒寫這系列的文章了,我越來越喜歡用python了,它在我的工作中佔據的比例越來越大。廢話少說,直接進入主題。    anydbm允許我們將一個磁碟上的檔案與一個“dict-like”對象關聯起來,操作這個“dict-like”對象,就像操作dict對象一樣,最後可以將“dict-like”的資料持久化到檔案。對這個"dict-like"對象進行操作的時候,key和value的類型必須是字串。下面是使用anydbm的例子:
#coding=utf-8import anydbmdef CreateData():    try:        db = anydbm.open('db.dat', 'c')        # key與value必須是字串        # db['int'] = 1        # db['float'] = 2.3        db['string'] = "I like python."        db['key'] = 'value'    finally:        db.close()        def LoadData():    db = anydbm.open('db.dat', 'r')    for item in db.items():        print item    db.close()        if __name__ == '__main__':    CreateData()    LoadData()

    

     anydbm.open(filename[, flag[, mode]]),filename是關聯的檔案路徑,選擇性參數flag可以是: 'r': 唯讀, 'w': 可讀寫, 'c': 如果資料檔案不存在,就建立,允許讀寫; 'n': 每次調用open()都重新建立一個空的檔案。mode是unix下檔案模式,如0666表示允許所有使用者讀寫。        shelve模組是anydbm的增強版,它支援在"dict-like"對象中儲存任何可以被pickle序列化的對象,但key也必須是字串。同樣的例子,與shelve來實現:
import shelvedef CreateData():    try:        db = shelve.open('db.dat', 'c')        # key與value必須是字串        db['int'] = 1        db['float'] = 2.3        db['string'] = "I like python."        db['key'] = 'value'    finally:        db.close()        def LoadData():    db = shelve.open('db.dat', 'r')    for item in db.items():        print item    db.close()        if __name__ == '__main__':    CreateData()    LoadData()
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.