Python基础-----实现文件的增删改查

#!/usr/bin/env python
# -*- coding:utf-8 -*-

import os
import json
import re
'''
本程序旨在将练习基础知识部分,包括:
列表,元组,字典,文件,函数,字符串等知识
实现的功能:
1.查询
2.删除
3.更改
4.增加
'''

#定义的文档存储格式
mes_style = '''bankend    www.baidu.org
           server 192.168.50.21   wight 100   maxconn 300
bankend    www.oldboy.org
           server 192.168.99.31   wight 50   maxconn 100\n
'''

#用户只能修改这些字段的值
updateable ={
    1:"server",
    2:"wight",
    3:"maxconn"
}

#菜单
menu_info = '''
1.查询
2.删除
3.修改
4.添加
5.退出
'''



#展示菜单
def show_menu():
    '''
    to display the menu ,I chosed the str to show it

    '''
    print(menu_info)

#初始化操作,往文件里边添加格式文件
def before_start():
    '''
    before start,you can call this func to create a file
    and then you should explanatory(注释) this method before calling
    the main method
    '''
    f = open("web.property","a+",encoding="utf-8")
    for i in mes_style:
        f.writelines(i)
    f.close()
#before_start()
#查询记录
def search(user_enter):
    '''
    this function can be used when search function needed
   user can select the listed item and then,the corresponding
   entry will be display
    '''
    #查询并打印出用户查询关键字所在的行和下一行
    f = open("web.property","r",encoding="utf-8")
    list = f.readlines()
    for i,line in enumerate(list):
        if user_enter in line:
            print(line)
            print(list[i+1])
        elif i == len(list)-1:
            print("查无结果")
    f.close()

#查出所有的文件内容,并包装成字典返回
def searchall():
    '''
    this function is a common function ,it can used in delete and update,so add
    '''
    f = open("web.property", "r", encoding="utf-8")
    list = f.readlines()
    #用来存储找到value为空所对应的key
    list1 =[]
    mapc = {}
    for i,line in enumerate(list):
        if line == "\n" or line == "":
            list.pop(i)
    for i in range(0,len(list),2):
        mapc[int(i/2)+1] =list[i:i+2]
    f.close()
    return mapc
#删除
def delete():
    '''
    this function is used to delete the record user selected
    '''
    flag = True
    while flag:
        maps = searchall()
        for i in maps.items():
            print(i)
        user_selected = input("请选择要删除的对象(输入b返回):")
        if user_selected.isdigit():
            user_selected = int(user_selected)
            #print(list)
            for j in maps.keys():
                if user_selected == j:
                    temp = j
            for m in maps.items():
                if user_selected == m:
                    temp = m
                    #删除文件中对应的该条记录
                    for line in list(maps.keys()):
                        if temp== line:
                            maps.pop(temp)
                            file_path = "C:/Users/Administrator/PycharmProjects/pythondemo/web.propertybak"
                            if os.path.exists(file_path):
                                os.remove(file_path)
                            os.renames("web.property", "web.propertybak")
                            f6 = open("web.property", "w")
                            for line in maps.values():
                                f6.write(line[0])
                                f6.write(line[1])
                            f6.close()
                            break
                        else:
                            break
                    print(maps)
                    #询问是否继续
                    conti = input("是否继续删除?(y/n):")
                    if conti == "y":
                        continue
                    else:
                        flag = False
                        break
        elif user_selected == "b":
            break
        else:
            print("输入有错误,请重新选择")


#添加
def add():
    '''
    you can execute add funciton to add a node to file
    but you should according to those forms
    1:"server",
    2:"wight",
    3:"maxconn"
    '''
    #regs ={"bankend":"www.\w.com","server":"\d.\d.\d.\d"}


    while True:
        print("请依次填入下列选项中的值")
        bankend = input("bankend:")
        server = input("server:")
        wight = input("wight:")
        maxconn = input("maxconn:")
        # 正则表达式检查输入是否符合格式要求
        if re.compile(r"www\.(\w+)(\.com|\.cn|\.org|\.net)").match(bankend):
            print("bankend ok")
            if re.compile(r"\d+\.\d+\.\d+\.\d").match(server):
                print("server ok")
                if re.compile(r"\d").match(wight):
                    print("wight ok")
                    if re.compile(r"\d").match(maxconn):
                        print("maxconn ok")
                        #条件都符合
                        write_date =["bankend    %s\n"%bankend,"           server %s   wigth %d   maxconn %d"%(server,int(wight),int(maxconn))]
                        f = open("web.property", "a", encoding="utf-8")
                        for line in write_date:
                            f.writelines(line)
                        f.close()
                        break
                    else:
                        print("maxconn invalid")
                        continue
                else:
                    print("wight invalid")
                    continue
            else:
                print("server invalid")
                continue
        else:
            print("bankend invalid")
            continue


#更新
def update():
    '''
    this function is designed for update the file message,content
    '''
    state = 0
    while True:
        mapa = searchall()
        for i,m in enumerate(mapa):
            print(str(i+1)+"."+str(mapa[m]))
        it = input("请选择要更改的条目:(b 返回)")
        if it.isdigit():
            it = int(it)
            for i in mapa.keys():
                if it == i:
                    print("check pass")
                    while True:
                        for member in updateable:
                            print(str(member)+":"+updateable[member])
                        user_se = input("请选择要修改的字段(按b返回):")
                        if user_se.isdigit():
                            user_se =int(user_se)
                            for j in updateable.keys():
                                if user_se == j:
                                    print("check pass2")
                                    while True:
                                        update_to = input("请输入值:")
                                        if update_to==None or update_to=="":
                                            pass
                                        else:
                                            break
                                    print(user_se)
                                    #获得选择的字段
                                    map_attr = updateable[user_se]
                                    li =[]
                                    for  l in mapa[it]:
                                        if map_attr in l:
                                            li.append(l.split("   "))
                                        print(l)
                                    #print(li)
                                    for i,ind in enumerate(li[0]):
                                        if(map_attr in ind and map_attr == "server"):
                                            ind = "           "+map_attr+" "+(str(update_to) if update_to.isdigit() else update_to)
                                        elif (map_attr in ind ):
                                            ind = "  " + map_attr + " " + (str(update_to) if update_to.isdigit()  else update_to)
                                            li[0][i]=ind
                                            break
                                    #同步到mapa
                                    final_str =""
                                    for i in li[0]:
                                        if "server" in i:
                                            final_str += "          "+i+"   "
                                        elif "wight" in i:
                                            final_str +=i+"   "
                                        else:
                                            final_str += i
                                    #print(final_str)
                                    for i,n in enumerate(mapa[it]):
                                        if "server" in n:
                                            mapa[it][i] =final_str+"\n"
                                    print(mapa)
                                    with open("web.property","w") as f:
                                        for line in mapa.values():
                                            f.writelines(line)
                                    f.close()
                                    print(mapa)
                                    print(li)
                                    print("修改成功")
                                    break
                                elif j == len(updateable):
                                    print("不在选项内,请重新选择")
                        elif user_se == "b":
                            break
                elif i ==len(mapa):
                    print("输入选项不在列表中,请重新选择")
        elif it == "b":
            state = 1
            break
        else:
            print("输入有误")
    if state == 1:
        return

#主程序
while True:
    show_menu()
    selected = input("请选择:(1,2,3,4,5):")
    if selected.isdigit():
        selected = int(selected)
        if selected == 1:
            search(input("请输入要查询的网址:"))
        if selected == 2:
            delete()
        if selected == 3:
            update()
        if selected == 4:
            add()
        if selected == 5:
            break
    else:
        print("你输入了其他字符,请输入数字")
        continue
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容