Python:jsmin压缩js代码

PyPI: https://pypi.org/project/jsmin/

Github: https://github.com/tikitu/jsmin

安装

pip install jsmin

使用示例

myfile.js

function foo() {
    console.log('hi')
}

1、命令行中使用

$ python -m jsmin myfile.js

function foo(){console.log('hi')}

2、代码中使用

# -*- coding: utf-8 -*-
from jsmin import jsmin

with open('myfile.js') as js_file:
    minified = jsmin(js_file.read())
    print(minified)
    
# function foo(){console.log('hi')}    
上一篇:kafka入门:简介、使用场景、设计原理、主要配置及集群搭建


下一篇:linux下mysql开启远程访问权限及防火墙开放3306端口