The compress_resources class is accessible via the webhelpers.commands.compress_resources module.
[('resource-dirs=', 'r', 'Relative directory where resources are located'),
('resource-files=',
None,
'Filenames to include (in order they should be included)'),
('combined-name=', None, 'Names of combined files'),
('extensions=', None, 'Extensions to compress (default .js and .css)'),
('compress-js', None, 'Compress Javascript using ShrinkSafe'),
('example-settings', None, 'Put some example settings in setup.cfg')]
Create and initialize a new Command object. Most importantly, invokes the 'initialize_options()' method, which is the real initializer and depends on the actual command being instantiated.
See the source for more information.