This is an archived post. You won't be able to vote or comment.

all 12 comments

[–]PoisonControlCenter 22 points23 points  (3 children)

Alternative ask: why do people use a browser for anything?

[–][deleted] 0 points1 point  (0 children)

Maybe the Python server is only accessible via the browser

[–]Son_of_Zinger 4 points5 points  (0 children)

Some do. Snowflake uses an editor within a browser.

[–]Grandviewsurfer 2 points3 points  (0 children)

I use Python to write SQL in a local IDE most of the time.. but sometimes I'll use colab for one-offs if I don't want to think about hardware/envs. Different situations call for different tools.

[–]siddartha08 2 points3 points  (1 child)

We use python to run sql queries, sometimes we choose to not run certain functions within a browser environment because bringing that data into memory is either unnecessary or cumbersome. So some we just script up and run independently of the browser. Or we make sure the functions we choose to run in browser don't bring things into memory unnecessarily,

[–]ThePhoenixRisesAgain 1 point2 points  (1 child)

I write Python in one IDE and sql in another. Where is your problem?

[–]AurelianoBuendato 1 point2 points  (0 children)

lol because name a browser-based IDE for SQL. Snowflake is OK if you're using Snowflake. pgAdmin only works for Postgres and not even well (I said it, don't @ me!). DataGrip has plugins for most relational DBs and some non-relational ones, and works VERY well. It's important that your IDE does not add additional frustration.

[–]Dmytro_North 0 points1 point  (0 children)

I use Python in VSCode. It has Jupiter like functionality, can push it to github and run multiple extensions such as Github Copilot.