How to check if computations are done in DataSpell

Question:

I am running the following code in DataSpell

some_object = function_with_very_long_computations()

I seem not able to find any indicators in DataSpell to confirm that line execution is completed. Especially in the case where some_object already exists and I am trying to refresh it. I can surely write something new_variable = 3+5 and run it immediately after my main line and check when new_variable is populated, but this looks like an awkward solution.

Any suggestions?

Asked By: user1700890

||

Answers:

If you run it within a Jupyter notebook, it’ll have an indication whether the cell is still running or not.

EDIT:

For Python scripts, there is a button "Show Command Queue" on the Python Console toolbar, which displays a green dot while the script is running (see screenshot).enter image description here
Not the most intuitive UI, but at least it’s there.

Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.