Skip to main content

Python wrapper for Uglify-JS library.

Project description

UgliPyJs is a port of the uglifier gem for python. It wraps the UglifyJS minification tool allowing you to minify your Javascript files from your Python code.

Install

$ pip install uglipyjs

Usage

To minify your javascript code:

import uglipyjs
js = open('blah.js','r').read()
uglipyjs.compile(js)

You can also minify with source map:

import uglipyjs
js = open('blah.js','r').read()
uglipyjs.compile_with_map(js)

If you need to override the defaults pass a dict of options as a second parameter to the compile function:

import uglipyjs
js = open('blah.js','r').read()
uglipyjs.compile(js,{'mangle':False})

License

Copyright 2012 Will McKenzie

UgliPyJs is licensed under the MIT License, please see the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

UgliPyJS-0.2.3.tar.gz (51.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page