对python实现模板生成脚本的方法详解


Posted in Python onJanuary 30, 2019

最近项目需要,针对主项目提取一个小的基础版本,供于在新建项目时使用,所以就有这个python模板生成脚本,其作用如下:

1、通过配置文件来控制模板中的数据、格式化的过滤条件

2、执行后会把目录下所有的文件都会执行一篇

#!/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",            ##模板数据
  "project_prefix":"newjava"           ##模板数据
 }
}

执行操作:

1、安装了python环境

2、双击python脚本

3、然后在执行下README中的步骤

readme:

README
=============

脚本使用
-------------
1. 打开config.json文件
2. 配置相关信息[输出目录、项目名称、项目前缀]
3. 执行make_project.py脚本
4. 查看输出目录

以上这篇对python实现模板生成脚本的方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python笔记(2)
Oct 24 Python
python处理html转义字符的方法详解
Jul 01 Python
Python实现的十进制小数与二进制小数相互转换功能
Oct 12 Python
Python numpy实现数组合并实例(vstack,hstack)
Jan 09 Python
Python实现带参数与不带参数的多重继承示例
Jan 30 Python
Python3.5.3下配置opencv3.2.0的操作方法
Apr 02 Python
Python 查看list中是否含有某元素的方法
Jun 27 Python
解决pandas.DataFrame.fillna 填充Nan失败的问题
Nov 06 Python
python实现梯度法 python最速下降法
Mar 24 Python
使用Keras画神经网络准确性图教程
Jun 15 Python
Python3.7安装pyaudio教程解析
Jul 24 Python
详解Python小数据池和代码块缓存机制
Apr 07 Python
ActiveMQ:使用Python访问ActiveMQ的方法
Jan 30 #Python
python 发送和接收ActiveMQ消息的实例
Jan 30 #Python
Python批量生成特定尺寸图片及图画任意文字的实例
Jan 30 #Python
理想高通滤波实现Python opencv示例
Jan 30 #Python
对DataFrame数据中的重复行,利用groupby累加合并的方法详解
Jan 30 #Python
WIn10+Anaconda环境下安装PyTorch(避坑指南)
Jan 30 #Python
对dataframe数据之间求补集的实例详解
Jan 30 #Python
You might like
《PHP编程最快明白》第六讲:Mysql数据库操作
2010/11/01 PHP
PHP中的替代语法简介
2014/08/22 PHP
Laravel中基于Artisan View扩展包创建及删除应用视图文件的方法
2016/10/08 PHP
js或css文件后面跟参数的原因说明
2010/01/09 Javascript
IE下JS读取xml文件示例代码
2013/08/05 Javascript
jQuery页面加载初始化常用的三种方法
2014/06/04 Javascript
初识Node.js
2014/09/03 Javascript
cocos2dx骨骼动画Armature源码剖析(三)
2015/09/08 Javascript
Boostrap基础教程之JavaScript插件篇
2016/09/08 Javascript
js从输入框读取内容,比较两个数字的大小方法
2017/03/13 Javascript
基于jQuery实现文字打印动态效果
2017/04/21 jQuery
浅谈VUE-CLI脚手架热更新太慢的原因和解决方法
2018/09/28 Javascript
vue-cli脚手架打包静态资源请求出错的原因与解决
2019/06/06 Javascript
JS寄快递地址智能解析的实现代码
2020/07/16 Javascript
[03:21]辉夜杯主赛事 12月25日TOP5
2015/12/26 DOTA
Python快速从注释生成文档的方法
2016/12/26 Python
python实现数据图表
2017/07/29 Python
浅谈python迭代器
2017/11/08 Python
python 显示数组全部元素的方法
2018/04/19 Python
浅谈Pandas 排序之后索引的问题
2018/06/07 Python
python 自定义异常和异常捕捉的方法
2018/10/18 Python
python执行精确的小数计算方法
2019/01/21 Python
Python获取时间范围内日期列表和周列表的函数
2019/08/05 Python
Django框架反向解析操作详解
2019/11/28 Python
python利用opencv实现SIFT特征提取与匹配
2020/03/05 Python
python实现交并比IOU教程
2020/04/16 Python
Python+Opencv身份证号码区域提取及识别实现
2020/08/25 Python
让你相见恨晚的十个Python骚操作
2020/11/18 Python
六查六看六改心得体会
2014/10/14 职场文书
学院党的群众路线教育实践活动第一阶段情况汇报
2014/10/25 职场文书
2014年科协工作总结
2014/12/09 职场文书
大学生自荐材料范文
2014/12/30 职场文书
入党积极分子党支部意见
2015/06/02 职场文书
Java异常处理try catch的基本用法
2021/12/06 Java/Android
对讲机的最大通讯距离是多少
2022/02/18 无线电
Python实战之大鱼吃小鱼游戏的实现
2022/04/01 Python