1 Star 0 Fork 6

东方甲乙木/restfx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
less.py 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
小李 提交于 2022-08-04 11:32 . 修复 接口页面样式问题
import os
def compile_less():
root = os.path.dirname(__file__)
dir_name = os.path.abspath(os.path.join(root, 'src/restfx/internal_assets/styles'))
import lesscpy
for file in os.listdir(dir_name):
file_path = os.path.join(dir_name, file)
if not os.path.isfile(file_path) or not file.lower().endswith('.less'):
continue
print('Compiling file %s' % file)
with open(file_path, encoding='utf8') as fp:
output_content = lesscpy.compile(fp, minify=True)
output_file = os.path.splitext(file_path)[0] + '.css'
with open(output_file, mode='w', encoding='utf8') as fp:
fp.write(output_content)
print('Compiled!')
if __name__ == '__main__':
compile_less()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/softwyy/restfx.git
git@gitee.com:softwyy/restfx.git
softwyy
restfx
restfx
master

搜索帮助