對python實現(xiàn)模板生成腳本的方法詳解
最近項目需要,針對主項目提取一個小的基礎版本,供于在新建項目時使用,所以就有這個python模板生成腳本,其作用如下:
1、通過配置文件來控制模板中的數(shù)據(jù)、格式化的過濾條件
2、執(zhí)行后會把目錄下所有的文件都會執(zhí)行一篇
#!/usr/bin/python #encoding: utf-8 import json import codecs import os def get_files(root_path): for dir in os.walk(root_path): if dir[2]: for nf in dir[2]: yield os.path.join(dir[0], nf) def exclude_filter(exclude, nfile): files_path = exclude.get('file_path') files_name = exclude.get('file_name') base_name = os.path.basename(nfile) exts_name = exclude.get('ext_name') base_ext_name = base_name.rsplit(".", 1)[1] if files_path: for npath in files_path: if npath==nfile: return True elif files_name: for name in files_name: print name, base_name if name==base_name: return True elif exts_name: for name in exts_name: print name, base_ext_name if name==base_ext_name: return True def include_filter(include, nfile): files_path = include.get('file_path') files_name = include.get('file_name') base_name = os.path.basename(nfile) if files_path: for npath in files_path: if npath==nfile: return True elif files_name: for name in files_name: if name==base_name: return True def main(): # read config config = {} with codecs.open("config.json","rb","UTF-8") as f: config = json.loads(f.read()) if not config: return template = config.get("template") if template and template.get('path'): root_path = template.get('path') if not os.path.exists(root_path): print "source path not exist" return root_path = os.path.abspath(root_path) old_path = os.path.dirname(root_path) else: return exclude = template.get('exclude') include = template.get('include') store = config.get("store") if not store or not os.path.exists(store.get('dir_path', '')): return data = config.get("data") if not data: return if not os.path.exists(root_path): print 'root path not exists' return if os.path.isfile(root_path): files = [root_path] else: base_name = os.path.basename(root_path) store_root_path = os.path.join(store.get('dir_path'), base_name) if not os.path.exists(store_root_path): os.mkdir(store_root_path) files = get_files(root_path) for nfile in files: print nfile try: with codecs.open(nfile, "rb", "UTF-8") as f: s = f.read() if not exclude_filter(exclude, nfile) or include_filter(include, nfile): s = s % data except: with codecs.open(nfile, "rb") as f: s = f.read() # save to file fn = nfile.replace(old_path, store.get('dir_path')) fn_dir = os.path.dirname(fn) if not os.path.exists(fn_dir): os.makedirs(fn_dir) try: with codecs.open(fn, "wb", "UTF-8") as f: f.write(s) f.flush() except: with codecs.open(fn, "wb") as f: f.write(s) f.flush() if __name__ == '__main__': main()
配置文件:
{ "template": { "path" : "D:/tunicorn-web/framework-template", ##模板文件主目錄 "exclude" : { ##不進行模板格式化的文件 "file_path" : [], "file_name" : ["config.json", "make_project.py"], "ext_name" : ["css", "woff2"], "file_type" : [], "regex" : [] }, "include" : { ##進行模板格式化的文件 "file_path" : [], "file_name" : [] } }, "store":{ "dir_path" : "e:/test" ##輸出路徑主目錄 "data" : { "project_name":"NewJAVA", ##模板數(shù)據(jù) "project_prefix":"newjava" ##模板數(shù)據(jù) } }
執(zhí)行操作:
1、安裝了python環(huán)境
2、雙擊python腳本
3、然后在執(zhí)行下README中的步驟
readme:
README
=============
腳本使用
-------------
1. 打開config.json文件
2. 配置相關信息[輸出目錄、項目名稱、項目前綴]
3. 執(zhí)行make_project.py腳本
4. 查看輸出目錄
以上這篇對python實現(xiàn)模板生成腳本的方法詳解就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關文章
python測試框架unittest和pytest區(qū)別
這篇文章主要介紹了python測試框架unittest和pytest區(qū)別,幫助大家更好的理解和學習使用python進行自動化測試,感興趣的朋友可以了解下2021-04-04Python實現(xiàn)微信中找回好友、群聊用戶撤回的消息功能示例
這篇文章主要介紹了Python實現(xiàn)微信中找回好友、群聊用戶撤回的消息功能,結合實例形式分析了Python基于微信itchat模塊實現(xiàn)針對撤回消息的查看功能相關操作技巧,需要的朋友可以參考下2019-08-08python通過自定義isnumber函數(shù)判斷字符串是否為數(shù)字的方法
這篇文章主要介紹了python通過自定義isnumber函數(shù)判斷字符串是否為數(shù)字的方法,涉及Python操作字符串判斷的相關技巧,需要的朋友可以參考下2015-04-04Python中利用Scipy包的SIFT方法進行圖片識別的實例教程
SIFT算法可以檢測圖片中的局部特征,算法原理相當復雜...但是!Python強大的第三方包Scipy中帶有實現(xiàn)SIFT算法的SIFT方法,我們只要拿來用就可以了,下面就為大家?guī)鞵ython中利用Scipy包的SIFT方法進行圖片識別的實例教程.2016-06-06Python執(zhí)行系統(tǒng)命令的五種方式小結
在日常開發(fā)中,有時需要在Python腳本中執(zhí)行系統(tǒng)命令,Python有五種方式來執(zhí)行系統(tǒng)命令(推薦使用第五種),本文為大家整理了這五種方法的具體使用,希望對大家有所幫助2024-01-01