You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not necessary. But convenient. We need the same engine running analyses on website as star_api. We also need to submit to website from API. What's the best way to get the tel in sync.
debug and df.to_csv("%s.analysis_df.csv" % analysis.analysis_name)
Also debug argument needs to be parsed everywhere, which complicates code. Is this necessary?
You may use ipdb or debug in PyCharm instead.
—
Reply to this email directly or view it on GitHub.
I wrote this library to help not break anything while refactoring and optimizing. The idea is to cache (save) function result first time and then check it all subsequent times. If result changes app stops, you are presented with explanation of what changed and a debugger promt, where you can examine result and saved_result and compare them.
But to really make everything in sync we should share code. I will create starbase library and extract as much as possible to it. I'll create separate issue for that.
I noticed lots of debug code like this:
Also
debug
argument needs to be parsed everywhere, which complicates code. Is this necessary?You may use
ipdb
or debug in PyCharm instead.The text was updated successfully, but these errors were encountered: