This article brings you a brief introduction to the shelve module in Python (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
shelve: A module for object persistence that saves objects to files (the default data storage file is binary) and can persist any Python data format supported by pickle
The only method in shelve:
shelve.open(filename,flag = 'c', protocol = None, writebake = False)
filename | Associated file path |
flag | 'r' : Open an existing data storage file in read-only mode |
' w' : Open an existing data storage file in read-write mode | |
'c' : (Default) Open an existing data storage file in read-write mode, Create if not present | |
'n' : Always open in read-write mode and create a new empty data storage file | |
protocol | indicates the protocol used to serialize data, the default is None (pickle v3) |
writebake | Indicates whether to enable the writeback function |
##1. The file can store key - value like a dictionary (Note: key must be a string, value can be any data type)
import shelve date = shelve.open('family.txt') # Python的自处理系统会自动生成三个文件 date['father'] = 'Presly' # 默认为创建并且写入“c” date['mather'] = 'Vera' date['baby'] = [123, ] date.close() m = shelve.open('family.txt', falg= 'r', writebake=True) # 当writebake设置为True时,文件里才能直接添加 print(m['baby']) m['baby'].append(345) print(m['father']) print('-------------') for key, value in m.items(): # 以字典的格式 print(key, ':', value) m.close()
[123] Presly ------------- father : Presly mather : Vera baby : [123,345]
2. Serialization of shelve
#You can serialize the class data and then deserialize the elements
Different from pickle, pickle can only load elements in the dump order, while shelve can directly repeatedly take out different or the same key values that are stored in the file,
3. shelve can perform operations similar to libraries, add, delete, modify, and check
import shelve def store_information(database): info = {} ID = input('Enter the ID number:') info['name'] = input('Enter the name:') # 将name ,age , phone 存入字典info里 info['age'] = input('Enter the age:') info['phone'] = input('Enter the phone:') database[ID] = info # 用ID : info 存入 database文件 def lookup_information(database): ID = input('Enter the ID:') field = input('What would you like to know?(name,age,phone)') field = field.strip().lower() print(database[ID][field]) # 通过输入的ID与 field 直接打印结果 def print_help(): print('Please enter the help command:') print('store :store informatinon to database') print('lookup :look up information by numID') print('quit :save information and quit') print('? :print help command') def enter_command(): cmd = input('Enter command (? for help)') cmd = cmd.strip().lower() return cmd def main(): database = shelve.open('db.dat') try: while True: cmd = enter_command() if cmd == 'store': store_information(database) # 当if函数结束,自动跳转到cmd = enter_command()行 elif cmd == 'lookup': lookup_information(database) elif cmd == '?': print_help() elif cmd == 'quit': return # 跳出while循环 finally: database.close() if __name__ == '__main__': main()
The above is the detailed content of A brief introduction to the shelve module in Python (with examples). For more information, please follow other related articles on the PHP Chinese website!