iOS 开发中 python 脚本常用模块和函数

os

  1. 获取当前路径 : os.getcwd()
  2. 获取某个目录下所有文件:os.listdir(file_path)
  3. 根据字符串创建目录:os.makedirs(local_pod)
  4. 获取系统Home目录路径:os.environ['HOME']
  5. 切换目录:os.chdir(example_path)
  6. 执行终端命令(shell、git、pod 等):os.system('sh pod_framework_mode.sh')

7.从一个命令打开一个管道:current_repo_current_branchs = os.popen('git symbolic-ref --short -q HEAD').readlines()

  1. 删除文件:os.remove(current_file_path)
  2. 通过在目录树中游走输出在目录中的文件名,向上或者向下: for root, dirs, files in os.walk(file_dir):

os.path

  1. 将一个路径拆分为 名字 和 后缀:(name, ext) = os.path.splitext(file),if ext == '.podspec'
  2. 将多个字符串拼接在一起组成一个路径:example_path = os.path.join(current_path, main_module_name, 'Example')
  3. 判断某个目录是否存在:if os.path.exists(local_pod) is not True:
  4. 判断某个路径是否是文件:if os.path.isfile(file_or_folder):
  5. 判断某个路径是否是文件夹:if os.path.isdir(file_or_folder):

sys

  1. 获取执行命令时带的参数:args = sys.argv[1:]
  2. 系统推出:sys.exit()

string

  1. 判断一个字符串是否包含一个子字符串:if ext == '.podspec' and string.find(file, 'Protocol') == -1:
  2. 将字符串转为大写或小写:if string.lower(name) == 'y' or string.lower(name) == 'yes' or name == '':
  3. 判断一个字符串是否包含一个子字符串:if string.find(line, module_name) != -1:

shutil

  1. 复制文件到目的目录:shutil.copy(file_or_folder, destination)
  2. 将目录下文件全部删除:shutil.rmtree(destination)
  3. 复制文件夹:shutil.copytree(file_path, current_file_path)
  4. 复制文件:shutil.copyfile(file_path, current_file_path)

from distutils.dir_util import copy_tree:

  1. 将某个路径下所有文件复制到另外一个路径下:copy_tree(path, backup_path)

datetime

  1. 获取当前时间:current_date = datetime.now()
  2. 将当前时间转为相应格式:date_str = current_date.strftime('%y年%m月%d日')

subprocess

  1. 关闭 Xcode :subprocess.call(['osascript', '-e', 'tell application "Xcode" to quit'])

系统内置

  1. 获取控制台输入字符串: name = raw_input(bcolors.WARNING + '确认要拷贝代码到git目录下?\n确定?请输入(Y/N)\n' + bcolors.ENDC)
  2. 打印字符串:print(bcolors.HEADER + '开始执行注入模式>>>>\n' + bcolors.ENDC)
  3. 打开文件:open(pod_file, 'r')
  4. 读取文件内容:file_handler.readlines()
  5. 将内容写到文件里面去:out.writelines(content)
  6. 获取数组指定元素index:index = content.index(line)
  7. 查找字符串里面指定字符串位置:path_index = str.find('path =>')
  8. 查找字符串指定位置后面某个字符串的index:module_start = str.find(''', path_index) + 1
  9. 根据两个index获取子字符串:module_path = str[module_start: module_end]
    10.数组元素个数:if len(current_repo_current_branchs) > 0:
    11.将字符串以某个字符为间隔转为数组:remotes_origin_branch_arr = remotes_origin_branch.split('/')
  10. 字符串替换某个字符为其他字符:branch = remotes_origin_branch_arr[2].replace('\n', '')
  11. 数组后面追加元素:manifest_all_branch.append(branch.strip())
  12. 移除字符串头尾指定的字符(默认为空格或换行符)或字符序列:if manifest_branch.strip() not in manifest_all_branch:
  13. 删除数组元素:del list[len(list) - 1]
  14. 数组替换:file_contents=file_contents.replace(old_import, new_import)

Git 相关

  1. 获取当前仓库当前分支:git symbolic-ref --short -q HEAD
  2. git 仓库根目录:git rev-parse --show-toplevel

你可能感兴趣的:(iOS 开发中 python 脚本常用模块和函数)