#!/usr/bin/env python
import sys
from sloth.core.cli import CommandLineUtility

def execute_from_command_line(argv=None):
    utility = CommandLineUtility(argv)
    utility.execute()

if __name__ == "__main__":
    execute_from_command_line(sys.argv)

