Thonny: A hassle-free Python micro-IDE
21–30 of 107 posts
Re: Thonny: A hassle-free Python micro-IDE
#22IME Thonny is a great sketchpad for Micropython ideas, and makes work on that platform nearly as easy as locally-run Python code.
Re: Thonny: A hassle-free Python micro-IDE
#23Re: Thonny: A hassle-free Python micro-IDE
#24I've used this in the past with my son to teach him simple stuff. Would be nice if it somehow had integrated docs though, at which point it would be roughly up to speed with QuickBasic in the 80s.
You can use the help function to see some information about things.
For example:
help(list)
Of course all of the help that you get that way is only useful if you already know the concepts you need and the names of things. It’s not like a tutorial or a guide or anything. But still, if you find yourself forgetting some detail about something it can be a way of finding the information you need.Re: Thonny: A hassle-free Python micro-IDE
#25Why is everything an IDE? I don't want an integrated development environment - I want a modular one. And as one of those modules, I would love a simple, lightweight code editor. UTF-8 only, auto-indent, a file list column, a good find-in-page feature, and file type dependent syntax highlighting and multi-line comment key. That's all I need. It seems I am always stuck between bloated IDEs (or bloated text editors like…
You seem to be spec'ing either vim or emacs, there.
Re: Thonny: A hassle-free Python micro-IDE
#26Why is everything an IDE? I don't want an integrated development environment - I want a modular one. And as one of those modules, I would love a simple, lightweight code editor. UTF-8 only, auto-indent, a file list column, a good find-in-page feature, and file type dependent syntax highlighting and multi-line comment key. That's all I need. It seems I am always stuck between bloated IDEs (or bloated text editors like…
There are plenty of mid-level editors out there. Sounds like Notepad++ and Sublime Text are up you alley. Also, it depends what you mean by bloated, but VS Code can be stripped down to work just like the two I listed above. Language servers aren't required by any means. If you're looking for sub 50MB ram usage, then stick to the two above and search for "Sublime Text alternative" and I'm sure you'll find more equival…
I prefer Atom.io over VSCode for simplicity. It's much closer to working the way I want out-of-the-box. There's so much junk I have to disable in VSCode to get it where I like.
Re: Thonny: A hassle-free Python micro-IDE
#27Re: Thonny: A hassle-free Python micro-IDE
#28Why is everything an IDE? I don't want an integrated development environment - I want a modular one. And as one of those modules, I would love a simple, lightweight code editor. UTF-8 only, auto-indent, a file list column, a good find-in-page feature, and file type dependent syntax highlighting and multi-line comment key. That's all I need. It seems I am always stuck between bloated IDEs (or bloated text editors like…
Re: Thonny: A hassle-free Python micro-IDE
#29One thing I haven't seen mentioned here yet: Thonny explicitly supports Micropython for embedded systems development: https://github.com/thonny/thonny/wiki/MicroPython IME Thonny is a great sketchpad for Micropython ideas, and makes work on that platform nearly as easy as locally-run Python code.
Re: Thonny: A hassle-free Python micro-IDE
#30Why is everything an IDE? I don't want an integrated development environment - I want a modular one. And as one of those modules, I would love a simple, lightweight code editor. UTF-8 only, auto-indent, a file list column, a good find-in-page feature, and file type dependent syntax highlighting and multi-line comment key. That's all I need. It seems I am always stuck between bloated IDEs (or bloated text editors like…