您当前的位置: 首页 >  Python

彭世瑜

暂无认证

  • 1浏览

    0关注

    2791博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Python:cssmin压缩css代码

彭世瑜 发布时间:2021-04-14 10:53:42 ,浏览量:1

PyPI: https://pypi.org/project/cssmin/ Github: https://github.com/zacharyvoase/cssmin

安装
pip install cssmin
使用示例

main.css

.box{
    background-color: red;
}

1、命令行中使用

$ cat main.css | cssmin

.box{background-color:red}

2、代码中使用

# -*- coding: utf-8 -*-
import cssmin

with open('main.css') as f:
    output = cssmin.cssmin(f.read())
    print(output)
    
# .box{background-color:red}
关注
打赏
1665367115
查看更多评论
立即登录/注册

微信扫码登录

0.1046s