`
南望山下守望者
  • 浏览: 10229 次
  • 来自: 武汉
社区版块
存档分类
最新评论

python shelve模块

阅读更多
shelve
shelve是一额简单的数据存储方案,他只有一个函数就是open(),这个函数接收一个参数就是文件名,然后返回一个shelf对象,你可以用他来存储东西,就可以简单的把他当作一个字典,当你存储完毕的时候,就调用close函数来关闭
这个有一个潜在的小问题,如下:
[python] view plaincopy
>>> import shelve 
>>> s = shelve.open('test.dat') 
>>> s['x'] = ['a', 'b', 'c'] 
>>> s['x'].append('d') 
>>> s['x'] 
['a', 'b', 'c'] 
存储的d到哪里去了呢?其实很简单,d没有写回,你把['a', 'b', 'c']存到了x,当你再次读取s['x']的时候,s['x']只是一个拷贝,而你没有将拷贝写回,所以当你再次读取s['x']的时候,它又从源中读取了一个拷贝,所以,你新修改的内容并不会出现在拷贝中,解决的办法就是,第一个是利用一个缓存的变量,如下所示
[python] view plaincopy
>>> temp = s['x'] 
>>> temp.append('d') 
>>> s['x'] = temp 
>>> s['x'] 
['a', 'b', 'c', 'd'] 
在python2.4中有了另外的方法,就是把open方法的writeback参数的值赋为True,这样的话,你open后所有的内容都将在cache中,当你close的时候,将全部一次性写到硬盘里面。如果数据量不是很大的时候,建议这么做。

下面是一个基于shelve的简单数据库的代码
[python] view plaincopy
#database.py 
import sys, shelve 
 
def store_person(db): 
    """
    Query user for data and store it in the shelf object
    """ 
    pid = raw_input('Enter unique ID number: ') 
    person = {} 
    person['name'] = raw_input('Enter name: ') 
    person['age'] = raw_input('Enter age: ') 
    person['phone'] = raw_input('Enter phone number: ') 
    db[pid] = person 
 
def lookup_person(db): 
    """
    Query user for ID and desired field, and fetch the corresponding data from
    the shelf object
    """ 
    pid = raw_input('Enter ID number: ') 
    field = raw_input('What would you like to know? (name, age, phone) ') 
    field = field.strip().lower() 
    print field.capitalize() + ':', \ 
        db[pid][field] 
 
def print_help(): 
    print 'The available commons are: ' 
    print 'store  :Stores information about a person' 
    print 'lookup :Looks up a person from ID number' 
    print 'quit   :Save changes and exit' 
    print '?     rint this message' 
 
def enter_command(): 
    cmd = raw_input('Enter command (? for help): ') 
    cmd = cmd.strip().lower() 
    return cmd 
 
def main(): 
    database = shelve.open('database.dat') 
    try:  
        while True: 
            cmd = enter_command() 
            if cmd == 'store': 
                store_person(database) 
            elif cmd == 'lookup': 
                lookup_person(database) 
            elif cmd == '?': 
                print_help() 
            elif cmd == 'quit': 
                return  
    finally: 
        database.close() 
if __name__ == '__main__': main() 
分享到:
评论

相关推荐

    Python shelve模块实现解析

    Python shelve模块是一个用于数据持久化的库,它允许用户以键值对的形式存储Python对象。这个模块特别适合需要快速存储和读取数据的场景,而且因为其操作方式类似于字典,使得它非常易于学习和使用。 首先,我们...

    python之shelve模块详解.docx

    【Python shelve模块详解】 `shelve`是Python标准库中的一个模块,它提供了一种简单的方法来持久化存储Python对象。与`anydbm`类似,`shelve`允许我们将对象保存到磁盘上的文件中,以实现数据的持久化。但是,两者...

    python3 shelve模块的详解

    Python3的`shelve`模块是一个非常实用的工具,它提供了简单的方法来持久化Python对象。这个模块的主要目的是为了能够方便地保存和加载数据,即使数据类型比较复杂,例如字典、列表或者其他自定义的对象。下面我们将...

    Python使用Shelve保存对象方法总结

    Shelve模块允许开发者将Python对象持久化到磁盘,使得在程序的后续运行中可以方便地访问这些对象。Shelve模块的特性在于它是一个简单的键值对存储,类似于字典,但数据是以二进制形式存储的,可以直接读写Python对象...

    Python数据持久化shelve模块用法分析

    shelve模块是Python的一个标准库模块,用于实现数据的持久化存储。它允许你将Python中的数据结构,比如字典、列表等,保存在磁盘的文件中,以便程序关闭之后仍然能够访问这些数据。当需要时,可以从文件中读取数据,...

    Python使用shelve模块实现简单数据存储的方法

    本文实例讲述了Python使用shelve模块实现简单数据存储的方法。分享给大家供大家参考。具体分析如下: Python的shelve模块提供了一种简单的数据存储方案,以dict(字典)的形式来操作数据。 #!/usr/bin/python ...

    第五周-第09章节-Python3.5-内置模块详解之Shelve模块.avi

    第五周-第09章节-Python3.5-内置模块详解之Shelve模块.avi

    学学Python_59标准模块7 shelve模块

    shelve模版,对应文件StandardLibrary9和databaseShelve,文章:https://blog.csdn.net/yysyangyangyangshan/article/details/85084999

    python3内置持久化模块shelve心得

    ### Python3内置持久化模块shelve心得 #### 概述 Python 提供了多种方式来实现数据的持久化,其中 `shelve` 模块是一个非常实用的选择,它允许我们像使用字典一样来存储复杂的数据结构,并将其保存到磁盘上以便...

    Python3.5内置模块之shelve模块、xml模块、configparser模块、hashlib、hmac模块用法分析

    本文实例讲述了Python3.5内置模块之shelve模块、xml模块、configparser模块、hashlib、hmac模块用法。分享给大家供大家参考,具体如下: 1、shelve模块 shelve类似于一个key-value数据库,可以很方便的用来保存...

    Python3 shelve对象持久存储原理详解

    Python3的`shelve`模块提供了对象持久存储的功能,它是一种简单的方式,尤其在不需要使用关系型数据库的情况下。`shelve`操作的对象就像字典一样,通过键来访问,但不同的是,`shelve`中的值会被序列化(pickled)后...

    python pickle 和 shelve模块的用法

    1.pickle ... name = [‘mayun’,’mahuateng’,’liyanhong’]  f = open(r’C:\a.txt’,’w’)  pickle.dump(dn,f) ##写一个对象  pickle.dump(name,f) ##再写一个对象  f.close()   读:以读的方式

    python模块

    * shelve:shelve模块使用特殊的“shelf”对象来支持持久化对象。这个对象的行为与dict相似,但是所有的他存储的对象都使用基于hashtable的数据库(dbhash,dbm,gdbm)存储在硬盘。与dbm模块的区别是所存储的对象...

    Python模块

    Python模块:time、random、os、sys、json、pickle、shelve、XML等

Global site tag (gtag.js) - Google Analytics