django-vue-admin/dvadmin-backend/scripts/__init__.py

14 lines
366 B
Python
Raw Normal View History

2021-02-27 10:22:21 +00:00
import os
def getSql(filename):
"""
获取文件内所有sql
:param filename: 例如os.path.join('permission','permission_dept.sql')
:return:
"""
pwd = os.path.join(os.getcwd(), 'scripts', filename)
with open(pwd) as fp:
content = fp.read()
return [ele for ele in content.split('\n') if not ele.startswith('--') and ele]