THIS Is My CLEAN Setup For Coding In Python (2023)

preview_player
Показать описание
A lot of you have been asking me which code editor I use, and which plugins I use when I code in Python. Well, here's the video that shows you all the secrets regarding my setup when coding in Python!

▶ Become job-ready with Python:

▶ Follow me on Instagram:

00:00 Intro
00:19 Which Code Editor I Use
00:30 PyCharm VS Visual Studio Code
00:50 Which Theme I Use
01:49 Font Size Shortcut
02:54 Refresh Shortcut
03:41 Why Coders Hate Me
05:11 How To Enable Ligatures
05:32 The Plugins I Use
06:24 Autoformatting
07:58 Yeah, That’s Pretty Much It
Рекомендации по теме
Комментарии
Автор

One plugin I use is Rainbow Brackets, which colors not only brackets but also variable names a unique color so you can see the same variable easier in different places etc.

kruvik
Автор

I use WSL + VS Code + Dev Containers which works amazingly well on my windows machine (have to use windows for other aspects of my work). But docker dev containers to containerize and standardize the developer experience has been a game changer for our team. No more “we’ll it works on my machine”. You can go from a repo to having a fully configured developer environment (including enforcing formatting on save, etc) in seconds and it just works.

JeremyLangdon
Автор

Your explanations are so concise and easy to follow😀. Thank you for making this video!

MyCodingDiary
Автор

Nice to see the love for PyCharm..
Was the IDE i was introduced to in my tutorials.

Many opt for VS Code it seems but find it is quite hard to get set up being that it supports many other languages.

Dedicated Python software just works for a noob like me 😂

De_Mysteriis
Автор

First, I started my Python journey by using PyCharm. I was already familiar with IntelliJ, because of Rider (the C# IDE). I started noticing a big resource usage impact (mostly the CPU, RAM and just the huge amount of processes that PyCharm started in the background). Then, I switched to VSCode and have been using it ever since for a few years for many languages (mostly Python and JS). Recently, I felt the need to switch to an even lighter editor, that is fast, not written in JavaScript/Electron, and, most importantly, one that wasn't built by Microsoft, has no telemetry and is fully open source. So I installed Emacs along with Spacemacs. It's not really as good as VSCode, but I like it way more... Also, I used Vim keybindings since the start, so the switch to Emacs was even easier!

ggorg
Автор

Thanks for a very helpful video. I am an old retired IT guy who started out on computers and languages you may not have heard of. Now I am trying to fill my time by studying Python and I am just getting started, and your video helped a lot. Thanks again.

beniciomoldenado
Автор

There is a plugin called keymap normalizer, it should normalize the shortcut mappings from english layout (default for plugins) to whatever layout you have

skandarsouissi
Автор

Been using VSCode for a while but at this moment I am giving Pycharm a chance. It is harder to setup than VSCode but has many quality-of-life improvements that Code lacks or have to be installed separately. I believe Pycharm is a great tool meant for big professional projects.

Shagadin
Автор

It doesn't have WSL support..only the paid version

KoljaMineralka
Автор

You forgot to cover replacement text (or whatever it’s called) like typing ‘main’ gets replace with the whole ‘if’ statement. I’m going to give this ide a try!

johnhenderson
Автор

Are you a freelancer?What app do you use for it?

archibald
Автор

Note: Java does not have the === operator. You're probably thinking of JavaScript, or Scala if you're using the Cats library.

vorpal
Автор

What, if anything, do you use for managing your python installs? I need to learn Python so I had a search to see what is the best thing to do and it is crazy how many options there are with pyenv, conda, virtualenv, etc. I don't even know where to start so I just ignored it all and installed it with the official Python pkg install for Mac on the Python website. What do you do?

satysin
Автор

Do you use mac or Microsoft ? And why Mac is often considered better for coding ?

Og
Автор

I never imagined you were Italian. :-)

MrAngeloniStephen
Автор

PyCharm definitely for the win. I pay a yearly license for the entire suite because CLion is the only C++ IDE I not only find tolerable but actually pleasant to use, and I want to support the makers of Kotlin since it has replaced Python and C++ as my favourite language.

The new UI is fantastic... very streamlined. I've chosen it across all the JetBrains IDEs that I use. (And YES to another Mac user. I could never program in a Windows environment. I need my creamy, delicious Mac OS X Unix.)

We have a member on the team that insists on using MVC and I hate it: after I approve his PRs and they're merged and I pull them, they are FULL of warnings that Python flags in accordance with PEP 8. It drives me bananas and I swear that about 15% of my time is spend just cleaning up his PRs after they're merged.

*headsmacks* the other day, he had a function that was supposed to return one of three types. It was something like:

def return_it(a: Optional[str], b: Optional[BytesIO], c: Optional[Boolean]):
....

If a was not None, he returned one type. If b was not none, he returned another, Finally, if c was not none and was True, he would return the third. If none of those were the case, he would raise an exception. I told him that we needed a data type with four values, one for each data type, and a failure, and not three parameters with 2 x 2 x 3 = 12 values.

def return_it(t: str | BytesIO | bool):
....

You should really do a video on the match function that was introduced. It is incredibly handy and has cleaned up our code on type matching dramatically.

Also, have you done a video on return typehints and mypy? We didn't realize we were using NoReturn wrong for the longest time when we should have been using None.

vorpal
Автор

the double equals sign is more of a problem for C/C++ programmers. Because C won’t throw an error.

AWriterWandering
Автор

PyCharm is definitely the superior python development platform. VSCode is a jack-of-all trades. It’s better for mixed code environments.

AWriterWandering
Автор

for a second i thought u were gonna show a general setup for monitoring connections to api's like a discord bot

KeiraraVT
Автор

Can you become developer at 38 ? I love it

AddictedToCode