#! /usr/bin/env python # -*- coding: utf-8 -*- import hotshot, hotshot.stats stats = hotshot.stats.load("download.prof") stats.strip_dirs() stats.sort_stats('time', 'calls') stats.print_stats()