Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does PyCharm Have Spyder's Variable Explorer Functions (mainly "Save As" and "Import")?

I started playing around with PyCharm today, and it seems like this is the Python IDE I want to start working with in the near future.

Currently, I am using Spyder from Anaconda. What I really like about Spyder is that I am able to export and import variables from the Variable Explorer window.

This means that I can debug part of my script, save the results, and then import the variables back into Spyder at another time. I can use such variables without even having to declare it in my script as Spyder already assume that it exists from the Variable Explorer window.

This feature is extremely useful to me, and I cannot tell if PyCharm has this feature.

I searched many places, and I could not find anything.

Does anyone know how to get this feature to work in PyCharm if it exists?

Thanks.

like image 519
stungkit Avatar asked Sep 28 '22 18:09

stungkit


1 Answers

PyCharm added some functionality similar to Spyder's Variable Explorer some months ago, as can be seen in this blog post.

However, as far as I know, it doesn't have the ability to import/export the variables present in its Python console.

like image 150
Carlos Cordoba Avatar answered Oct 17 '22 22:10

Carlos Cordoba