Useful Commands and Shortcuts
Useful Commands and Shortcuts
Section titled βUseful Commands and ShortcutsβThis page is intentionally compact. It is a quick-reference page for common Python workflow commands.
Environment Setup
Section titled βEnvironment Setupβpython -m venv .venv.venv\Scripts\Activate.ps1source .venv/bin/activatePackage Management
Section titled βPackage Managementβpython -m pip install requestspython -m pip listpython -m pip freeze > requirements.txtRunning Code
Section titled βRunning Codeβpython script.pypython -m pytestQuality Tools
Section titled βQuality Toolsβpython -m black .python -m ruff check .