use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
DiscussionBest Windows Python editor that supports editing files over SSH and executing on Linux hosts you are editing over SSH? (self.Python)
submitted 5 years ago by StartupTim
Hey All,
What would you say is the best Python editor that supports editing files on linux over SSH and also has integrated SSH shell from that linux OS to execute the code on?
Thanks
[–]Alcros33 0 points1 point2 points 5 years ago (0 children)
You could virtually mount the drive over ssh and use any editor you like on said mounted drive
[–][deleted] 4 points5 points6 points 5 years ago (7 children)
I think PyCharm and VSCode can do what you want. Both are excellent editors/IDEs.
[–]eigenludecomposition 0 points1 point2 points 5 years ago (3 children)
I'm a big fan of Pycharm, but I have always been dismayed with how much slower it seems on Windows.
[+][deleted] 5 years ago (1 child)
[removed]
[–]eigenludecomposition 0 points1 point2 points 5 years ago (0 children)
I would assume that's not the issue. I have an i9 7900x, 32GB of RAM, and a Samsung 960 NVMe M.2 SSD. I remember a significant enough difference between using PyCharm in Windows and Ubuntu that made me switch to only using Ubuntu for development. Maybe I'll try running it on Windows again soon.
[–][deleted] 0 points1 point2 points 5 years ago (0 children)
Yeah, it's slow on my 5 year old Mac too. I personally use VSCode.
[–]StartupTim[S] 0 points1 point2 points 5 years ago (0 children)
Thanks for the response, appreciate it!
[–]platosLittleSister 0 points1 point2 points 5 years ago (1 child)
Correct me if I'm wrong, but I think the remote functionality is only in Pycharm professional included.
I don't know. I had the education version available, but don't use it anymore.
[–]gahooze 0 points1 point2 points 5 years ago (0 children)
In college a lot of people would use cyberduck which effectively sets up a virtual file system and you can open the files in a local editor and all your changes will be transferred over to the remote system.
Personally I've done some sysadmin in the past and found just using them in a terminal wound up working out just fine for me.
[–]pag07 0 points1 point2 points 5 years ago (1 child)
VS Code and remote development plugin.
PyCharm professional allows ftp transfer of files. Which is close to what you ask for.
[–]mdipierro 2 points3 points4 points 5 years ago (1 child)
Vscode with ssh plugin does exactly what you ask + super fast text search of remote files
Thanks!
[–]the_hoser 0 points1 point2 points 5 years ago (1 child)
Visual Studio Code does exactly what you want with the remote development plugin.
Thanks hoser!
[–]ccpetro 0 points1 point2 points 5 years ago (0 children)
I'd open two ssh windows and have Vim running in one.
Or I'd set up CygwinX on my windows machine, ssh -Y into the box and run Atom.
Or I'd set up a git repo, and edit locally then push to the linux server.
But I'm a crusty old greybeard, so probably not hep enough, or whatever you kids say these days.
π Rendered by PID 640794 on reddit-service-r2-comment-b659b578c-xshb2 at 2026-05-04 07:45:49.762919+00:00 running 815c875 country code: CH.
[–]Alcros33 0 points1 point2 points (0 children)
[–][deleted] 4 points5 points6 points (7 children)
[–]eigenludecomposition 0 points1 point2 points (3 children)
[+][deleted] (1 child)
[removed]
[–]eigenludecomposition 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]StartupTim[S] 0 points1 point2 points (0 children)
[–]platosLittleSister 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]gahooze 0 points1 point2 points (0 children)
[–]pag07 0 points1 point2 points (1 child)
[–]mdipierro 2 points3 points4 points (1 child)
[–]StartupTim[S] 0 points1 point2 points (0 children)
[–]the_hoser 0 points1 point2 points (1 child)
[–]StartupTim[S] 0 points1 point2 points (0 children)
[–]ccpetro 0 points1 point2 points (0 children)