https://prefect.io logo
Title
a

Andrew Huang

02/27/2022, 6:57 PM
Does anyone have any recommendations for Sublime Text package plugins relevant to Python. I only have python-black installed at the moment.
a

Anna Geller

02/27/2022, 6:58 PM
sorry, I’m a Pycharm user
👍 1
k

Kevin Kho

02/27/2022, 10:17 PM
I moved from Sublime to VScode and never looked back 😅
👍 2
d

Dylan

02/28/2022, 6:55 PM
Sublime is built on Python fortunately. So using Sublime’s
Package Control
will let you install Python linters etc and let you point to specific python installations. I moved from SublimeText to Emacs years ago and never looked back though.
a

Abhishek

02/28/2022, 6:57 PM
@Andrew Huang i hope you are using package control for sublime, if not you can try that for installing the rest of the packages. Few packages for python i’d suggest are: • AutoPEP8Jedi - for autocompletion OR tabnine - (I have used jedi with VS code though 😅) other good to have python packages irrespective of text editor plugins are: • isort - sorting imports • Interrogate - for docstring coverage • flake8
👀 1
I usually bundle these package configs under pre-commit conifg and live by them 😅
its easy to run all the checks at once.
a

Andrew Huang

02/28/2022, 7:00 PM
Thank you for the suggestions! I didn't know about interrogate, but after I posted, I found isort + flake8 too under package control. I'll also try jedi, hopefully it doesn't slow loading too much
👍 1