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


Posted in Python onMay 20, 2015

本文实例讲述了Python使用shelve模块实现简单数据存储的方法。分享给大家供大家参考。具体分析如下:

Python的shelve模块提供了一种简单的数据存储方案,以dict(字典)的形式来操作数据。

#!/usr/bin/python
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 unique ID number:')
  temp = db[pid]
  field = raw_input('Please enter name, age or phone:')
  field.strip().lower()
  print field.capitalize() + ': ', temp[field]
def print_help():
  print 'The avaliable commands are:'
  print 'store  :Stores infomation about a person'
  print 'lookup  :Looks up a person form ID number'
  print 'quit   :Save changes and exit'
  print '?    :Prints this message'
def enter_command():
  cmd = raw_input('Enter command(? for help):')
  cmd = cmd.strip().lower()
  return cmd
def main():
  database = shelve.open('database')
  # database stores in current directory
  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()
    # Close database in any condition
if __name__ == '__main__':
  main()

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
跟老齐学Python之编写类之一创建实例
Oct 11 Python
在Python中用get()方法获取字典键值的教程
May 21 Python
Python之自动获取公网IP的实例讲解
Oct 01 Python
Python编程scoketServer实现多线程同步实例代码
Jan 29 Python
python定向爬取淘宝商品价格
Feb 27 Python
django输出html内容的实例
May 27 Python
Python自然语言处理 NLTK 库用法入门教程【经典】
Jun 26 Python
Python多线程操作之互斥锁、递归锁、信号量、事件实例详解
Mar 24 Python
python 基于opencv 绘制图像轮廓
Dec 11 Python
使paramiko库执行命令时在给定的时间强制退出功能的实现
Mar 03 Python
详解Python常用的魔法方法
Jun 03 Python
Pytest中skip skipif跳过用例详解
Jun 30 Python
Python使用matplotlib实现在坐标系中画一个矩形的方法
May 20 #Python
python获取指定目录下所有文件名列表的方法
May 20 #Python
Python使用reportlab将目录下所有的文本文件打印成pdf的方法
May 20 #Python
Python使用matplotlib绘制动画的方法
May 20 #Python
Python中subprocess模块用法实例详解
May 20 #Python
python检测某个变量是否有定义的方法
May 20 #Python
Python实现在matplotlib中两个坐标轴之间画一条直线光标的方法
May 20 #Python
You might like
哪吒敖丙传:新人物二哥敖乙出场 小敖丙奶气十足
2020/03/08 国漫
php 字符串函数收集
2010/03/29 PHP
利用phpexcel把excel导入数据库和数据库导出excel实现
2014/01/09 PHP
Laravel 5框架学习之日期,Mutator 和 Scope
2015/04/08 PHP
用JQuery 实现的自定义对话框
2007/03/24 Javascript
JavaScript入门教程(10) 认识其他对象
2009/01/31 Javascript
JS获取后台Cookies值的小例子
2013/03/04 Javascript
如何使用json在前后台进行数据传输实例介绍
2013/04/11 Javascript
javascript之typeof、instanceof操作符使用探讨
2013/05/19 Javascript
JavaScript 垃圾回收机制分析
2013/10/10 Javascript
node.js中的http.response.removeHeader方法使用说明
2014/12/14 Javascript
Angular2 (RC4) 路由与导航详解
2016/09/21 Javascript
浅析JavaScript中var that=this
2017/02/17 Javascript
详解微信小程序 相对定位和绝对定位
2017/05/11 Javascript
layer弹出框确定前验证:弹出消息框的方法(弹出两个layer)
2019/09/21 Javascript
windows实现npm和cnpm安装步骤
2019/10/24 Javascript
jQuery使用jsonp实现百度搜索的示例代码
2020/07/08 jQuery
详解在IDEA中将Echarts引入web两种方式(使用js文件和maven的依赖导入)
2020/07/11 Javascript
Python 错误和异常小结
2013/10/09 Python
Python实现的数据结构与算法之快速排序详解
2015/04/22 Python
python非递归全排列实现方法
2017/04/10 Python
Flask框架Flask-Login用法分析
2018/07/23 Python
python利用re,bs4,requests模块获取股票数据
2019/07/29 Python
对Matlab中共轭、转置和共轭装置的区别说明
2020/05/11 Python
通过实例了解Python异常处理机制底层实现
2020/07/23 Python
Python大批量搜索引擎图像爬虫工具详解
2020/11/16 Python
澳大利亚牛仔裤商店:Just Jeans
2016/10/13 全球购物
Boden英国官网:英国知名原创时装品牌
2018/11/06 全球购物
网络信息管理员岗位职责
2014/01/05 职场文书
2014自主招生自荐信策略
2014/01/27 职场文书
模具专业毕业推荐信
2014/03/08 职场文书
2014年关于两会精神的心得体会
2014/03/17 职场文书
关于爱国的演讲稿
2014/05/07 职场文书
广告文案的撰写技巧(实用干货)
2019/08/23 职场文书
springboot拦截器无法注入redisTemplate的解决方法
2021/06/27 Java/Android
关于Vue中的options选项
2022/03/22 Vue.js