I alias liberally, but only if it improves readability. *import requests as req* is fine, but I’ve seen people do *import requests as r*, and that’s where it gets ugly.
Tools like PyCharm or VSCode can show you the original import on hover, so aliasing isn’t as scary for newcomers. But still, keep it sensible.
Tools like PyCharm or VSCode can show you the original import on hover, so aliasing isn’t as scary for newcomers. But still, keep it sensible.
