binary file

Kent Johnson kent37 at tds.net
Mon Jun 20 08:00:31 EDT 2005


Nader Emami wrote:
> L.S.,
> 
> I have used the profile module to measure some thing as the next command:
> 
> profile.run('command', 'file')
> 
> But this make a binary file! How can I write the result of 'profile' in 
> a ascii file? Others how can I read (or convert) the binary file to am 
> ascii file?

Use an instance of pstats.Stats to interpret the results:

from pstats import Stats
s = Stats('file')
s.print_stats()

etc.
http://docs.python.org/lib/profile-stats.html

Kent



More information about the Python-list mailing list