Python基础(14)_python模块之configparser模块、suprocess
9、configparser模塊
模塊適用于配置文件的格式與windows ini文件類似,可以包含一個或多個節(section),每個節可以有多個參數(鍵=值)。
常見的軟件格式文檔格式如下:
1 [DEFAULT] 2 ServerAliveInterval = 45 3 Compression = yes 4 CompressionLevel = 9 5 ForwardX11 = yes 6 7 [bitbucket.org] 8 User = hg 9 10 [topsecret.server.com] 11 Port = 50022 12 ForwardX11 = no使用configparser模塊,創建格式文檔:
import configparserconfig=configparser.ConfigParser()config['DEFAULT'] ={'ServerAliveInterval': '45','Compression': 'yes','CompressionLevel': '9','ForwardX11':'yes' } config['bitbucket'] = {'User':'hg'} config['topsecret.server.com'] = {'Host Port':'50022','ForwardX11':'no'} with open('config.ini','w',encoding='utf-8') as f:config.write(f)查找文件:以字典的方式
import configparserconfig = configparser.ConfigParser()#---------------------------查找文件內容,基于字典的形式print(config.sections()) # []config.read('config.ini') #讀取文件print(config.sections()) # ['bitbucket.org', 'topsecret.server.com']print('bytebong.com' in config) # False print('bitbucket.org' in config) # Trueprint(config['bitbucket.org']["user"]) # hgprint(config['DEFAULT']['Compression']) #yesprint(config['topsecret.server.com']['ForwardX11']) #noprint(config['bitbucket.org']) #<Section: bitbucket.org>for key in config['bitbucket.org']: # 注意,有default會默認default的鍵print(key) >>userserveraliveintervalcompressioncompressionlevelforwardx11print(config.options('bitbucket.org')) # 同for循環,找到'bitbucket.org'下所有鍵 >>['user', 'serveraliveinterval', 'compression', 'compressionlevel', 'forwardx11']print(config.items('bitbucket.org')) #找到'bitbucket.org'下所有鍵值對 >>[('serveraliveinterval', '45'), ('compression', 'yes'), ('compressionlevel', '9'), ('forwardx11', 'yes'), ('user', 'hg')] print(config.get('bitbucket.org','compression')) # yes get方法取深層嵌套的值 >>yes增刪改操作
import configparserconfig = configparser.ConfigParser() config.read('example.ini')#增加 config.add_section('yuan') #刪除 config.remove_section('bitbucket.org') config.remove_option('topsecret.server.com',"forwardx11") #修改 config.set('topsecret.server.com','k1','11111') config.set('yuan','k2','22222')config.write(open('new2.ini', "w"))10、subprocess模塊
當我們需要調用系統的命令的時候,最先考慮的os模塊。用os.system()和os.popen()來進行操作。但是這兩個命令過于簡單,不能完成一些復雜的操作,如給運行的命令提供輸入或者讀取命令的輸出,判斷該命令的運行狀態,管理多個命令的并行等等。這時subprocess中的Popen命令就能有效的完成我們需要的操作。
subprocess模塊允許一個進程創建一個新的子進程,通過管道連接到子進程的stdin/stdout/stderr,獲取子進程的返回值等操作。?簡單命令:
a = subprocess.Popen('ls',shell=True)
在windows中,創建子進程需要添加:shell=True
在Linux中,創建子進程不需添加shell=True,在使用命令參數時需要添加shell=True
?
在創建Popen對象時,subprocess.PIPE可以初始化stdin, stdout或stderr參數。表示與子進程通信的標準流。
?
import subprocessa = subprocess.Popen('ls',shell=True) # 創建一個新的進程,與主進程不同步 print('>>>',a) #a是Popen的一個實例對象 >>> <subprocess.Popen object at 0x0000024BB71BB128>#in Linux 系統中 subprocess.Popen('ls -l',shell=True) #結果以字符串顯示subprocess.Popen(['ls','-l']) #結果以列表顯示subprocess.PIPE
在創建Popen對象時,subprocess.PIPE可以初始化stdin, stdout或stderr參數。表示與子進程通信的標準流。
import subprocess s=subprocess.Popen('dir',shell=True,stdout=subprocess.PIPE) print(s.stdout.read().decode('gbk'))subprocess創建了子進程,結果本在子進程中,if 想要執行結果轉到主進程中,就得需要一個管道,即 :?stdout=subprocess.PIPE
?
轉載于:https://www.cnblogs.com/hedeyong/p/7086025.html
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的Python基础(14)_python模块之configparser模块、suprocess的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SSH框架实现仿淘宝购物demo
- 下一篇: css 控制li点与文字的距离