python-third-party-imports
python-third-party-imports copied to clipboard
A Python CLI tool (Written in Rust) that finds all third-party packages imported into your Python project
Results
1
python-third-party-imports issues
Sort by
recently updated
recently updated
newest added
Sometimes imports are used only for type checking. Python recommends placing these imports under a `if TYPE_CHECKING` condition: https://docs.python.org/3/library/typing.html#typing.TYPE_CHECKING, which can be used to reduce the cost of imports during...