TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Profiling: Interactive Python profiler

73 pointsby shinveeover 10 years ago

2 comments

Monkeygetover 10 years ago
Great project!<p>I&#x27;ve done some python code optimization recently and I was fairly disappointed in the profiling options; more precisely the profiling visualization options. Standard python provides pstats, which is basic and has an awkward command based GUI. I&#x27;ve tried runsnakerun and snakevis which do provide a nice graphical view but little else.<p>Easy to use, hierarchical list, clear output. I like this. I never used live profiling before and I can already see where it could be super handy.<p>Remarks:<p>-how do I pass arguments to my program. profiling seems to absorb all parameters<p>-Is it possible to access standard input&#x2F;output when live profiling?<p>-Is it possible to reset the profiling statistics when live profiling? Eg.: I profile a webserver, profile a request, reset stats, profile another request,...<p>-I&#x27;d love to see an integration with IPython. Interactive optimization could be great: I profile some code, tweak it, profile again,...
评论 #8347758 未加载
评论 #8346715 未加载
georgem12over 10 years ago
Looks cool, but I don&#x27;t understand the remote profiling server. Does that mean profiling server code on requests or is it a server that can let you view profiling results?