Tired of stopping your coding to go write an import?
Type what you want, let PyCharm do the rest.
You could scroll up, type your import, find where you were, and resume. Instead, just type your symbol and let Python make the import. No distractions.
This is the right way to do imports.
As you are typing a symbol, you have to both finish typing the symbol -- and without a typo -- and you have to import it. For the import, you have to stop what you're doing, scroll up, enter the import in the correctly-sorted PEP8 way, etc.
Let PyCharm do all of that. While typing, press Ctrl-Space Ctrl-Space
to tell PyCharm to autocomplete on symbols from modules. When you select
the completion target, PyCharm will also generate the import -- in the right
place, merging it with an existing import if needed.