Live data from Hacker News

Spyder – a free and open source scientific environment written in Python

spyder-ide.org

11–20 of 167 posts

Re: Spyder – a free and open source scientific environment written in Python

#12
I like spyder a lot for the variable explorer, which makes it feel more like Matlab. However the constant bothering about installing Kite got annoying. Unfortunately there isn't a way to use Kite and have it not constantly annoy you about upgrading to the enterprise edition. If Kite had a no ads plan for like ~ $10 a year it would make a lot more sense to integrate it in spyder.

Re: Spyder – a free and open source scientific environment written in Python

#13
Can I get the following behavior from Spyder (last time I tried I couldn't find a way) - for some keyboard shortcut like Cmd/Ctrl + Enter:

- the shortcut sends the selected code to the terminal (this is possible)

- if I hit the shortcut when nothing is selected, the line where the cursor currently is gets sent to the terminal and the cursor moves to the next line of code

- if the cursor is at the beginning of a block of code like an if-statement or a loop, the whole statement is sent to the terminal and the cursor moves to after the statement

RStudio has this behaviour by default, I find it very convenient and I haven't been able to replicate it in other environments.

Re: Spyder – a free and open source scientific environment written in Python

#14
I'm sorry, I'm sure Spyder has lots of merits (and I'm sure the devs are wonderful people), but I've spent so much time fixing fellow academics' Python problems that were in the end rooted in "I don't know what I'm doing, so I installed this Spyder thing and it has now taken over every aspect of Python on my computer" that I feel a visceral negative reaction to the name in my body. Not Spyder's fault, of course, but nonetheless.

Re: Spyder – a free and open source scientific environment written in Python

#16

If you use this, you are a junior dev - embarrassing

Guess I’m junior then. I learned how to code via scientific coding so I love Spyder for its simplicity. When I want to work deeply on a difficult problem and want to quickly flesh out ideas it’s my go to because it sandboxes really well and I can iterate much faster in it.

I use more advanced IDE when integrating the code I developed in Spyder into a larger code base. I’m sure many will criticize my workflow but I’ve tried doing other ways and this works best for me and I write less buggy code this way.

Re: Spyder – a free and open source scientific environment written in Python

#19

Can I get the following behavior from Spyder (last time I tried I couldn't find a way) - for some keyboard shortcut like Cmd/Ctrl + Enter: - the shortcut sends the selected code to the terminal (this is possible) - if I hit the shortcut when nothing is selected, the line where the cursor currently is gets sent to the terminal and the cursor moves to the next line of code - if the cursor is at the beginning of a block…

That sort of workflow sounds a lot like what you would get from a notebook like Jupyter, albeit you would have explicit block of code ("cells") to be executed together.

It looks like Spyder now features Jupyter Notebook integration as well: https://github.com/spyder-ide/spyder-notebook

Post reply on HN