Search Results

11
votes

Python script for minifying CSS?

This seemed like a good task for me to get into python, which has been pending for a while. I hereby present my first ever python script: import sys, re css = open( sys.argv[1] , ' …
5
votes

port python code to javascript

I'm fairly new to Python but if I understand the code correctly, it reconstructs a list from a given offset into every item following offset+1 and the item at the offset. Running it seems t …