The PyPA recommended tool for installing Python packages.
91
Build a command-line tool that lists installed packages in a Python environment with filtering capabilities.
@generates
def list_packages(
format: str = "columns",
outdated: bool = False,
editable: bool = False,
local: bool = False
) -> str:
"""
List installed packages with optional filtering.
Args:
format: Output format - "columns", "freeze", or "json"
outdated: If True, only show packages with updates available
editable: If True, only show editable installations
local: If True, exclude system site-packages
Returns:
Formatted string containing the package listing
"""
passThe Python package installer with package listing capabilities.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/pypi-pipevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10