Python Aliases
Short Python commands.
This page introduces one alias group and its common command shortcuts. Read it first to understand naming conventions, expected inputs, and safe execution patterns. Then open the reference appendix for the complete command inventory and exact syntax. These aliases reduce repeated typing and preserve consistent workflow behavior on macOS, Linux, and WSL.
When to use
Use this page before daily shell work when you need predictable command patterns.
What is included
- Aliases: 44
- Helper functions: 2
- Source files: 1
Quick examples
black→'python -m black' # Code formatting with blackdeact→'deactivate' # Deactivate venvipy→'ipython' # Interactive Python shelllint→'pylint' # Code lintingmkvenv→'python -m venv .venv' # Create .venv in current directorymkvenvlocal→'python -m venv ./venv' # Create ./venv in current directorymypy→'python -m mypy' # Static type checkingpep8→'autopep8' # Code formattingpipf→'pip freeze' # Show frozen requirementspipi→'pip install' # Install packagespipl→'pip list' # List installed packagespipout→'pip freeze > requirements.txt' # Save requirements
Next step
Open the full list: