Catalogue des Commandes 04/02/2026 22:00:00 angularforall.com

- Commandes Python : guide complet CLI et pip

Python Cli Pip Scripting Developpement Venv Packages Programmation Data-Science Backend Pyenv Pytest Virtualenv Python3

Apprenez les commandes Python et pip : guide complet avec exécution de scripts, gestion des packages, environnements virtuels et bonnes pratiques.

python
Description :

Lance l'interpréteur Python interactif (REPL)

Options :
  • -c
  • -m
  • -i
  • -V
  • --version
  • -h
  • --help
  • -q
  • -O
  • -OO
  • -s
  • -S
  • -E
  • -v
  • -vv
  • -b
  • -bb
  • -B
  • -d
  • -I
  • -t
  • -tt
  • -u
  • -W
  • -X
  • -R ⚠️
  • --check-hash-based-pycs
python3
Description :

Lance Python 3 (sur systèmes où python pointe vers Python 2)

Options :
  • -c
  • -m
  • -i
  • -V
  • --version
  • -h
  • --help
  • -q
  • -O
  • -OO
  • -s
  • -S
  • -E
  • -v
  • -vv
  • -b
  • -bb
  • -B
  • -d
  • -I
  • -t
  • -tt
  • -u
  • -W
  • -X
  • -R ⚠️
python mon_script.py
Description :

Exécute un script Python

pip
Description :

Gestionnaire de paquets Python

Options :
  • install
  • uninstall
  • list
  • show
  • search
  • freeze
  • download
  • wheel
  • hash
  • check
  • config
  • cache
  • debug
  • help
pip install
Description :

Installe un package Python depuis PyPI

Options :
  • -r ⚠️
  • --requirement ⚠️
  • -c
  • --constraint
  • --no-deps
  • --pre
  • -e
  • --editable
  • -t
  • --target
  • --platform
  • --python-version
  • --implementation
  • --abi
  • --user
  • --root ⚠️
  • --prefix
  • --src
  • --upgrade
  • -U
  • --upgrade-strategy
  • --force-reinstall ⚠️
  • --ignore-installed
  • --no-download
  • --no-cache-dir
  • --no-binary
  • --only-binary
  • --prefer-binary
  • --require-hashes ⚠️
  • --progress-bar
  • --no-build-isolation
  • --use-pep517
  • --check-build-dependencies
  • --break-system-packages
  • --dry-run ⚠️
  • --report ⚠️
  • --index-url
  • -i
  • --extra-index-url
  • --no-index
  • --find-links ⚠️
  • -f ⚠️
  • --proxy
  • --retries ⚠️
  • --timeout
  • --exists-action
  • --trusted-host
  • --client-cert
  • --cert
  • --cache-dir
  • --no-clean
  • --require-virtualenv ⚠️
  • --python
  • -q
  • --quiet
  • -v
  • --verbose
  • --log
pip uninstall
Description :

Désinstalle un package Python

Options :
  • -r ⚠️
  • --requirement ⚠️
  • -y
  • --yes
  • --root ⚠️
  • --break-system-packages
  • -q
  • --quiet
  • -v
  • --verbose
pip list
Description :

Liste les packages installés

Options :
  • -o
  • --outdated
  • -u
  • --uptodate
  • -e
  • --editable
  • -l
  • --local
  • --user
  • --path
  • --pre
  • --format ⚠️
  • --not-required ⚠️
  • --exclude-editable
  • --include-editable
  • --exclude
  • -v
  • --verbose
pip show
Description :

Affiche les informations d'un package installé

Options :
  • -f ⚠️
  • --files ⚠️
  • -v
  • --verbose
pip freeze
Description :

Affiche les packages installés au format requirements

Options :
  • -r ⚠️
  • --requirement ⚠️
  • -l
  • --local
  • --user
  • --path
  • --all
  • --exclude-editable
  • -q
  • --quiet
pip search
Description :

Recherche un package sur PyPI

Options :
  • --index
  • -i
pip check
Description :

Vérifie les dépendances pour les conflits

Options :
  • -v
  • --verbose
pip cache
Description :

Gère le cache de pip

Options :
  • info
  • list
  • remove
  • purge
  • dir
pip config
Description :

Gère la configuration de pip

Options :
  • list
  • get
  • set
  • unset
  • edit
  • debug
pip download
Description :

Télécharge des packages sans les installer

Options :
  • -r ⚠️
  • -d
  • --dest
  • --platform
  • --python-version
  • --implementation
  • --abi
  • --no-deps
  • --no-binary
  • --only-binary
  • --prefer-binary
  • --require-hashes ⚠️
  • --progress-bar
  • --no-build-isolation
  • --use-pep517
  • --index-url
  • -i
  • --extra-index-url
  • --no-index
  • --find-links ⚠️
  • -f ⚠️
pip wheel
Description :

Construit des wheels pour les packages

Options :
  • -r ⚠️
  • -w
  • --wheel-dir
  • --no-deps
  • --no-binary
  • --only-binary
  • --prefer-binary
  • --require-hashes ⚠️
  • --progress-bar
  • --no-build-isolation
  • --use-pep517
  • --index-url
  • -i
  • --extra-index-url
  • --no-index
  • --find-links ⚠️
  • -f ⚠️
pip install --user
Description :

Installe un package pour l'utilisateur courant uniquement

Options :
  • -r ⚠️
  • --upgrade
  • -U
  • --force-reinstall ⚠️
  • --no-cache-dir
pip install -r requirements.txt
Description :

Installe toutes les dépendances depuis un fichier requirements

Options :
  • --upgrade
  • -U
  • --force-reinstall ⚠️
  • --no-deps
  • --no-cache-dir
pipenv
Description :

Gestionnaire d'environnements virtuels et de dépendances

Options :
  • install
  • uninstall
  • lock
  • sync
  • shell
  • run
  • graph
  • check
  • clean
  • update
  • upgrade
  • verify
  • requirements
  • scripts
  • support ⚠️
  • --python
  • --three
  • --two
  • --rm ⚠️
  • --site-packages
  • --version
  • -h
  • --help
  • --man
  • --support
  • --venv
  • --py
  • --envs
  • --bare
pipenv install
Description :

Installe des packages et crée/environnement virtuel

Options :
  • --dev
  • -d
  • --system
  • --deploy
  • --ignore-pipfile
  • --skip-lock
  • --pre
  • --keep-outdated
  • --selective-upgrade
  • --sequential
  • --extra-index-url
  • --index
  • -i
  • --verbose
  • -v
  • --python
  • --pypi-mirror
  • --clear
  • -e
  • --editable
pipenv shell
Description :

Active l'environnement virtuel Pipenv

Options :
  • --fancy ⚠️
  • --anyio
  • --quiet
  • -q
pipenv run
Description :

Exécute une commande dans l'environnement virtuel

pipenv lock
Description :

Génère ou met à jour Pipfile.lock

Options :
  • --dev
  • -d
  • --clear
  • --pre
  • --keep-outdated
  • --requirements ⚠️
  • -r ⚠️
  • --no-header
pipenv graph
Description :

Affiche le graphe des dépendances

Options :
  • --json
  • --json-tree
  • --reverse ⚠️
poetry
Description :

Gestionnaire de dépendances et d'empaquetage Python moderne

Options :
  • new
  • init
  • install
  • add
  • remove
  • update
  • lock
  • show
  • build
  • publish
  • config
  • run
  • shell
  • check
  • search
  • env
  • self
  • source
  • export
  • version
  • cache
  • debug
  • help
poetry new
Description :

Crée un nouveau projet Python

Options :
  • --name
  • --src
  • --readme ⚠️
  • --license
  • --author
  • --description
  • --python
poetry init
Description :

Initialise un projet Poetry existant

Options :
  • --name
  • --description
  • --author
  • --python
  • --dependency
  • --dev-dependency
  • --license
  • --no-interaction
poetry add
Description :

Ajoute une dépendance au projet

Options :
  • --dev
  • -D
  • --group
  • --optional
  • --extras
  • -E
  • --source
  • --allow-prereleases
  • --dry-run ⚠️
  • --lock
  • --no-update
  • --editable
  • -e
  • --path
  • --git
  • --branch
  • --tag
  • --rev ⚠️
poetry remove
Description :

Supprime une dépendance du projet

Options :
  • --dev
  • -D
  • --group
  • --dry-run ⚠️
poetry install
Description :

Installe les dépendances du projet

Options :
  • --no-dev
  • --dev-only
  • --remove-untracked ⚠️
  • --sync
  • --no-root ⚠️
  • --no-directory
  • --dry-run ⚠️
  • --extras
  • -E
  • --all-extras
  • --only
  • --with
  • --without
  • --compile
  • --no-cache
  • --verbose
  • -v
poetry update
Description :

Met à jour les dépendances

Options :
  • --no-dev
  • --dry-run ⚠️
  • --lock
  • --with
  • --without
  • --only
poetry lock
Description :

Verrouille les dépendances dans poetry.lock

Options :
  • --no-update
  • --check
  • --no-cache
  • --verbose
  • -v
poetry show
Description :

Affiche les dépendances

Options :
  • --tree
  • --latest
  • -l
  • --outdated
  • -o
  • --no-dev
  • --why
  • --with
  • --without
  • --only
  • --top-level
  • -T
  • --all
poetry build
Description :

Construit le package

Options :
  • --format ⚠️
  • -f ⚠️
  • --output
  • -o
poetry publish
Description :

Publie le package sur PyPI

Options :
  • --repository ⚠️
  • -r ⚠️
  • --username
  • -u
  • --password
  • -p
  • --cert
  • --client-cert
  • --build
  • --dry-run ⚠️
  • --skip-existing
poetry run
Description :

Exécute une commande dans l'environnement virtuel

poetry shell
Description :

Active l'environnement virtuel Poetry

poetry env
Description :

Gère les environnements virtuels

Options :
  • info
  • list
  • remove
  • use
virtualenv
Description :

Crée un environnement virtuel Python isolé

Options :
  • --version
  • -h
  • --help
  • -v
  • --verbose
  • -q
  • --quiet
  • --clear
  • --system-site-packages
  • --always-copy
  • --no-setuptools
  • --no-pip
  • --no-wheel
  • --no-periodic-update
  • --symlinks
  • --copies
  • --prompt
  • --python
  • -p
  • --seeder
  • --extra-search-dir
  • --download
  • --no-download
  • --app-data
  • --reset-app-data ⚠️
  • --upgrade-embed-wheels
python -m venv
Description :

Crée un environnement virtuel (module venv intégré)

Options :
  • --system-site-packages
  • --symlinks
  • --copies
  • --clear
  • --upgrade
  • --without-pip
  • --prompt
  • --upgrade-deps
source venv/bin/activate
Description :

Active l'environnement virtuel (Linux/macOS)

venv\Scripts\activate
Description :

Active l'environnement virtuel (Windows CMD)

venv\Scripts\Activate.ps1
Description :

Active l'environnement virtuel (Windows PowerShell)

deactivate
Description :

Désactive l'environnement virtuel actif

conda
Description :

Gestionnaire de paquets et d'environnements Anaconda

Options :
  • create
  • install
  • update
  • remove
  • list
  • search
  • info
  • clean
  • config
  • init
  • activate
  • deactivate
  • env
  • build
  • convert
  • develop
  • index
  • inspect
  • metapackage
  • render
  • server
  • skeleton
  • verify
  • run
  • help
conda create
Description :

Crée un nouvel environnement conda

Options :
  • -n
  • --name
  • -p
  • --prefix
  • --clone
  • --file ⚠️
  • --dev
  • -c
  • --channel
  • --use-local
  • --override-channels
  • --strict-channel-priority
  • --no-channel-priority
  • --no-deps
  • --only-deps
  • --no-pin
  • --copy
  • -k
  • --insecure
  • --offline
  • -q
  • --quiet
  • -y
  • --yes
  • --dry-run ⚠️
  • --json
  • --solver
conda install
Description :

Installe des packages dans l'environnement conda

Options :
  • -n
  • --name
  • -p
  • --prefix
  • -c
  • --channel
  • --use-local
  • --override-channels
  • --strict-channel-priority
  • --no-channel-priority
  • --no-deps
  • --only-deps
  • --no-pin
  • --copy
  • -k
  • --insecure
  • --offline
  • -q
  • --quiet
  • -y
  • --yes
  • --dry-run ⚠️
  • --json
  • --solver
  • --update-deps
  • --satisfied-skip-solve
  • --update-specs
  • --revision ⚠️
  • --file ⚠️
  • --dev
  • --no-update-deps
  • -m
  • --mkdir
  • --clobber
conda update
Description :

Met à jour des packages conda

Options :
  • -n
  • --name
  • -p
  • --prefix
  • -c
  • --channel
  • --use-local
  • --override-channels
  • --strict-channel-priority
  • --no-channel-priority
  • --no-pin
  • -k
  • --insecure
  • --offline
  • -q
  • --quiet
  • -y
  • --yes
  • --dry-run ⚠️
  • --json
  • --all
  • --update-all
  • --update-specs
conda remove
Description :

Supprime des packages ou environnements

Options :
  • -n
  • --name
  • -p
  • --prefix
  • -c
  • --channel
  • --use-local
  • --override-channels
  • --no-pin
  • -k
  • --insecure
  • --offline
  • -q
  • --quiet
  • -y
  • --yes
  • --dry-run ⚠️
  • --json
  • --all
  • --features ⚠️
  • --force-remove ⚠️
  • --no-pin
conda list
Description :

Liste les packages dans l'environnement

Options :
  • -n
  • --name
  • -p
  • --prefix
  • --json
  • -v
  • --verbose
  • -q
  • --quiet
  • --explicit
  • --md5
  • --canonical
  • --export
  • --revisions ⚠️
  • --no-pip
conda search
Description :

Recherche des packages

Options :
  • -c
  • --channel
  • --use-local
  • --override-channels
  • --json
  • -v
  • --verbose
  • -q
  • --quiet
  • --info
  • -i
  • --envs
  • -e
  • --platform
  • --spec
conda env
Description :

Gère les environnements conda

Options :
  • create
  • export
  • list
  • remove
  • update
  • config
conda activate
Description :

Active un environnement conda

Options :
  • --stack
  • --no-stack
conda deactivate
Description :

Désactive l'environnement conda actif

conda info
Description :

Affiche les informations sur conda

Options :
  • -a
  • --all
  • -e
  • --envs
  • -s
  • --system
  • --unsafe-channels
  • --json
  • -v
  • --verbose
  • -q
  • --quiet
conda clean
Description :

Nettoie le cache et les fichiers inutilisés

Options :
  • -a
  • --all
  • -i
  • --index-cache
  • -p
  • --packages
  • -t
  • --tarballs
  • -f ⚠️
  • --force-pkgs-dirs ⚠️
  • -l
  • --logfiles
  • -c
  • --tempfiles
  • --json
  • -q
  • --quiet
  • -y
  • --yes
  • --dry-run ⚠️
conda init
Description :

Initialise conda pour le shell

Options :
  • --all
  • --user
  • --no-user
  • --system
  • --reverse ⚠️
  • --json
  • -v
  • --verbose
  • -q
  • --quiet
  • --dry-run ⚠️
python -m http.server
Description :

Lance un serveur HTTP simple

Options :
  • --directory
  • -d
  • --bind
  • -b
  • --cgi
  • --version
python -m json.tool
Description :

Valide et formate du JSON

Options :
  • --sort-keys
  • --no-ensure-ascii
  • --indent
  • --tab
  • --compact
  • --no-indent
python -m unittest
Description :

Lance les tests unitaires

Options :
  • -v
  • --verbose
  • -q
  • --quiet
  • -f ⚠️
  • --failfast ⚠️
  • -c
  • --catch
  • -b
  • --buffer
  • -k
  • -s
  • -p
  • -t
python -m pytest
Description :

Lance les tests avec pytest

Options :
  • -v
  • --verbose
  • -q
  • --quiet
  • -s
  • --capture
  • -k
  • -m
  • -x
  • --exitfirst
  • --maxfail
  • --lf
  • --last-failed ⚠️
  • --ff ⚠️
  • --failed-first ⚠️
  • --nf
  • --new-first ⚠️
  • --sw
  • --stepwise
  • --pdb
  • --trace
  • --durations
  • --tb
  • --showlocals
  • -l
  • --cov
  • --cov-report ⚠️
  • --no-cov
  • --junit-xml
  • --html
  • --self-contained-html
  • -n
  • --numprocesses
  • --dist
  • --ignore
  • --collect-only
  • --markers
  • --fixtures ⚠️
  • --setup-show
  • --doctest-modules
  • --rootdir ⚠️
  • --basetemp
  • --color
  • --code-highlight
pytest
Description :

Framework de tests Python (commande directe)

Options :
  • -v
  • --verbose
  • -q
  • --quiet
  • -s
  • -k
  • -m
  • -x
  • --lf
  • --ff ⚠️
  • --pdb
  • --trace
  • --cov
  • --cov-report ⚠️
  • --junit-xml
  • --html
  • -n
  • --ignore
  • --collect-only
  • --tb
python -m coverage
Description :

Mesure la couverture de code

Options :
  • run
  • report
  • html
  • xml
  • json
  • annotate
  • combine
  • erase ⚠️
  • debug
coverage run
Description :

Exécute des tests avec mesure de couverture

Options :
  • -m
  • --module
  • --source
  • --include
  • --omit
  • --branch
  • --context
  • --append
  • --concurrency
  • -p
  • --parallel-mode
  • --timid
  • --rcfile ⚠️
  • --debug
coverage report
Description :

Affiche le rapport de couverture

Options :
  • -m
  • --show-missing
  • --include
  • --omit
  • --precision
  • --sort
  • --skip-covered
  • --skip-empty
  • --fail-under ⚠️
  • --format ⚠️
  • --ignore-errors
coverage html
Description :

Génère un rapport HTML de couverture

Options :
  • --directory
  • -d
  • --title
  • --skip-covered
  • --skip-empty
python -m black
Description :

Formate automatiquement le code Python

Options :
  • -l
  • --line-length
  • -t
  • --target-version
  • --pyi
  • --ipynb
  • --python-cell-magics
  • -S
  • --skip-string-normalization
  • -C
  • --skip-magic-trailing-comma
  • --preview
  • --unstable
  • --enable-unstable-feature ⚠️
  • --check
  • --diff
  • --color
  • --no-color
  • --fast ⚠️
  • --safe
  • --required-version ⚠️
  • --include
  • --exclude
  • --extend-exclude
  • --force-exclude ⚠️
  • --stdin-filename ⚠️
  • -c
  • --code
  • -q
  • --quiet
  • -v
  • --verbose
  • --version
  • --config
black
Description :

Formateur de code Python (commande directe)

Options :
  • -l
  • --line-length
  • -t
  • --target-version
  • -S
  • --skip-string-normalization
  • --check
  • --diff
  • --fast ⚠️
  • --safe
  • --exclude
  • -q
  • --quiet
  • -v
  • --verbose
python -m isort
Description :

Trie les imports Python

Options :
  • --profile
  • --check
  • --diff
  • --apply
  • --dont-follow-links ⚠️
  • --skip
  • --skip-glob
  • --extend-skip
  • --skip-gitignore
  • --filter-files ⚠️
  • --files ⚠️
  • --dont-skip
  • --settings-path
  • --settings-file ⚠️
  • --resolve-all-configs ⚠️
  • --virtual-env
  • --conda-env
  • --src
  • --src-path
  • --gitignore
  • --overwrite-in-place
  • --recursive ⚠️
  • --quiet
  • -q
  • --verbose
  • -v
  • --jobs
  • -j
  • --atomic
  • --dedup-headings
  • --line-length
  • -l
  • --wrap-length
  • -w
  • --lines-after-imports
  • --lines-between-types
  • --trailing-comma
  • --multi-line
  • --force-grid-wrap ⚠️
  • --use-parentheses
  • --ensure-newline-before-comments
  • --indent
  • --comment-prefix
  • --length-sort
  • --float-to-top ⚠️
  • --case-sensitive
  • --order-by-type
  • --force-sort-within-sections ⚠️
  • --force-single-line ⚠️
  • --force-alphabetical-sort-within-sections ⚠️
  • --honor-noqa
  • --treat-comment-as-code
  • --treat-all-comment-as-code
  • --remove-redundant-aliases ⚠️
  • --reverse-relative ⚠️
  • --sort-relative-in-force-single-line ⚠️
  • --combine-as
  • --combine-star
  • --split-on-trailing-comma
  • --py
  • --honor-case-in-force-single-line ⚠️
  • --no-sections
  • --no-lines-before
  • --no-inline-sort
  • --ac
  • --add-import
  • --append-only
  • --rm ⚠️
  • --remove-import ⚠️
  • --star-first ⚠️
  • --git-ls-files ⚠️
  • --ext
  • --extension
  • --sg
  • --skip-gitignore
  • --only-modified
  • --only-sections
  • --ls
  • --list-supported-extensions
  • --show-config
  • --show-files ⚠️
  • --interactive
  • --interactive-first ⚠️
  • --stdout
  • --version
isort
Description :

Trieur d'imports Python (commande directe)

Options :
  • --check
  • --diff
  • --profile
  • --line-length
  • -l
  • --skip
  • -q
  • --quiet
  • -v
  • --verbose
  • --jobs
  • -j
python -m flake8
Description :

Linter Python (vérifie le style et les erreurs)

Options :
  • --max-line-length
  • --max-complexity
  • --select
  • --ignore
  • --extend-ignore
  • --exclude
  • --extend-exclude
  • --filename ⚠️
  • --stdin-display-name
  • --format ⚠️
  • --statistics
  • --count
  • --show-source
  • --quiet
  • -q
  • --verbose
  • -v
  • --jobs
  • -j
  • --tee
  • --output-file ⚠️
  • --append-config
  • --config
  • --isolated
  • --benchmark
  • --bug-report ⚠️
  • --version
  • --help
flake8
Description :

Linter Python (commande directe)

Options :
  • --max-line-length
  • --ignore
  • --exclude
  • --show-source
  • --statistics
  • --count
  • -q
  • --quiet
  • -v
  • --verbose
  • --jobs
  • -j
python -m pylint
Description :

Analyseur statique de code Python

Options :
  • --rcfile ⚠️
  • --init-hook
  • --errors-only
  • -E
  • --verbose
  • -v
  • --version
  • --help
  • --long-help
  • --help-msg
  • --list-msgs
  • --list-msgs-enabled
  • --list-groups
  • --list-conf-levels
  • --full-documentation ⚠️
  • --generate-rcfile ⚠️
  • --generate-toml-config
  • --ignore
  • --ignore-paths
  • --ignore-patterns
  • --jobs
  • -j
  • --limit-inference-results ⚠️
  • --extension-pkg-allow-list
  • --extension-pkg-whitelist
  • --fail-on ⚠️
  • --fail-under ⚠️
  • --enable
  • --disable
  • --output
  • --output-format ⚠️
  • --reports ⚠️
  • --evaluation
  • --score
  • --msg-template
  • --persistent
  • --exit-zero
  • --from-stdin ⚠️
  • --source-roots ⚠️
  • --recursive ⚠️
  • --clear-cache-post-run ⚠️
  • --py-version
  • --suggestion-mode
  • --dummy-variables-rgx ⚠️
  • --additional-builtins
  • --allow-global-unused-variables
  • --callbacks
  • --confidence
  • --const-rgx ⚠️
  • --const-hint
  • --good-names
  • --include-naming-hint
  • --max-module-lines
  • --max-attributes
  • --max-args
  • --max-bool-expr
  • --max-branches
  • --max-locals
  • --max-parents
  • --max-public-methods
  • --max-returns ⚠️
  • --max-statements
  • --min-public-methods
  • --max-line-length
pylint
Description :

Analyseur statique Python (commande directe)

Options :
  • --rcfile ⚠️
  • --errors-only
  • -E
  • --verbose
  • -v
  • --ignore
  • --jobs
  • -j
  • --enable
  • --disable
  • --output-format ⚠️
  • --exit-zero
  • --recursive ⚠️
python -m mypy
Description :

Vérificateur de types statique pour Python

Options :
  • -m
  • --module
  • -c
  • --command
  • -p
  • --package
  • --exclude
  • --config-file ⚠️
  • --warn-unused-configs
  • --warn-unused-ignores
  • --show-error-context
  • --show-column-numbers
  • --show-error-end
  • --show-error-codes
  • --show-absolute-path
  • --hide-error-context
  • --hide-error-codes
  • --color
  • --no-color
  • --pretty
  • --no-pretty
  • --no-error-summary
  • --error-summary
  • --show-traceback
  • --tb
  • --raise-exceptions ⚠️
  • --custom-typing-module
  • --custom-typeshed-dir
  • --warn-incomplete-stub
  • --warn-redundant-casts ⚠️
  • --warn-unused-ignores
  • --no-warn-unused-ignores
  • --warn-unreachable
  • --warn-no-return ⚠️
  • --warn-return-any ⚠️
  • --warn-unused-configs
  • --disallow-any-generics
  • --disallow-subclassing-any
  • --disallow-untyped-calls
  • --disallow-untyped-defs
  • --disallow-incomplete-defs
  • --check-untyped-defs
  • --disallow-untyped-decorators
  • --no-implicit-optional
  • --strict-optional
  • --strict-equality
  • --strict-concatenate
  • --strict
  • --disable-error-code
  • --enable-error-code
  • --follow-imports ⚠️
  • --ignore-missing-imports
  • --namespace-packages
  • --explicit-package-bases
  • --no-site-packages
  • --no-silence-site-packages
  • --platform
  • --python-version
  • --python-executable
  • --always-true
  • --always-false ⚠️
  • --disallow-any-unimported
  • --disallow-any-expr
  • --disallow-any-decorated
  • --disallow-any-explicit
  • --warn-return-any ⚠️
  • --implicit-reexport ⚠️
  • --no-implicit-reexport ⚠️
  • --strict-concatenate
  • --strict-equality
  • --allow-redefinition ⚠️
  • --local-partial-types
  • --no-warn-incomplete-stub
  • --scripts-are-modules
  • --install-types
  • --non-interactive
  • --junit-xml
  • --find-occurrences ⚠️
  • --cobertura-xml-report ⚠️
  • --html-report ⚠️
  • --linecount-report ⚠️
  • --lineprecision-report ⚠️
  • --txt-report ⚠️
  • --xslt-html-report ⚠️
  • --xslt-txt-report ⚠️
  • --quick-and-dirty
  • --cache-dir
  • --sqlite-cache
  • --no-sqlite-cache
  • --skip-version-check
  • --version
  • -v
  • --verbose
  • --help
  • -h
mypy
Description :

Vérificateur de types (commande directe)

Options :
  • --config-file ⚠️
  • --strict
  • --ignore-missing-imports
  • --follow-imports ⚠️
  • --python-version
  • --install-types
  • --non-interactive
  • --html-report ⚠️
  • --junit-xml
  • -v
  • --verbose
python -m ruff
Description :

Linter et formateur Python ultra-rapide

Options :
  • check
  • format ⚠️
  • rule
  • config
  • linter
  • clean
  • generate-shell-completion
  • help
  • --fix ⚠️
  • --unsafe-fixes ⚠️
  • --show-fixes ⚠️
  • --diff
  • --watch
  • --fix-only ⚠️
  • --no-fix ⚠️
  • --select
  • --extend-select
  • --ignore
  • --extend-ignore
  • --exclude
  • --extend-exclude
  • --force-exclude ⚠️
  • --per-file-ignores ⚠️
  • --fixable ⚠️
  • --unfixable
  • --extend-fixable ⚠️
  • --extend-unfixable
  • --line-length
  • --show-source
  • --statistics
  • --quiet
  • -q
  • --silent
  • --verbose
  • -v
  • --no-cache
  • --cache-dir
  • --isolated
  • --stdin-filename ⚠️
  • --exit-zero
  • --exit-non-zero-on-fix ⚠️
  • --show-files ⚠️
  • --show-settings
  • --add-noqa
  • --respect-gitignore ⚠️
  • --force-check ⚠️
  • --preview
  • --target-version
  • --config
  • --extension
  • --output-format ⚠️
  • --ecosystem-ci
  • --version
ruff check
Description :

Vérifie le code Python avec Ruff

Options :
  • --fix ⚠️
  • --unsafe-fixes ⚠️
  • --show-fixes ⚠️
  • --diff
  • --watch
  • --select
  • --ignore
  • --exclude
  • --line-length
  • --show-source
  • --statistics
  • -q
  • --quiet
  • -v
  • --verbose
  • --no-cache
  • --isolated
  • --exit-zero
  • --preview
  • --target-version
  • --config
ruff format
Description :

Formate le code Python avec Ruff

Options :
  • --check
  • --diff
  • --line-length
  • --preview
  • --target-version
  • --config
  • --exclude
  • --force-exclude ⚠️
  • --respect-gitignore ⚠️
  • --stdin-filename ⚠️
  • -q
  • --quiet
  • -v
  • --verbose
  • --no-cache
  • --cache-dir
  • --isolated
ruff
Description :

Linter Ruff (commande directe)

Options :
  • check
  • format ⚠️
  • --fix ⚠️
  • --watch
  • --select
  • --ignore
  • --exclude
  • --line-length
  • --show-source
  • -q
  • --quiet
  • -v
  • --verbose
python -m bandit
Description :

Analyseur de sécurité pour code Python

Options :
  • -r ⚠️
  • --recursive ⚠️
  • -a
  • --aggregate
  • -n
  • --number
  • -c
  • --configfile
  • --profile
  • -t
  • --tests
  • -s
  • --skip
  • -b
  • --baseline
  • -i
  • --ini
  • --ignore-nosec
  • -x
  • --exclude
  • -l
  • --level
  • --severity-level
  • --confidence-level
  • -f ⚠️
  • --format ⚠️
  • -o
  • --output
  • -v
  • --verbose
  • -d
  • --debug
  • -q
  • --quiet
  • --version
  • --help
bandit
Description :

Analyseur de sécurité (commande directe)

Options :
  • -r ⚠️
  • --recursive ⚠️
  • -c
  • --configfile
  • -s
  • --skip
  • -x
  • --exclude
  • -l
  • --level
  • -f ⚠️
  • --format ⚠️
  • -o
  • --output
  • -v
  • --verbose
  • -q
  • --quiet
python -m pip-audit
Description :

Audite les dépendances pour les vulnérabilités

Options :
  • -r ⚠️
  • --requirement ⚠️
  • --require-hashes ⚠️
  • --index-url
  • -i
  • --extra-index-url
  • --no-index
  • --find-links ⚠️
  • -f ⚠️
  • --proxy
  • --trusted-host
  • --timeout
  • --cache-dir
  • --progress-bar
  • --retries ⚠️
  • --skip-editable
  • --no-deps
  • -o
  • --output
  • --output-format ⚠️
  • --desc
  • --cache-alias
  • --dry-run ⚠️
  • --strict
  • -v
  • --verbose
  • -q
  • --quiet
  • --fix ⚠️
  • --require-hashes ⚠️
  • --ignore-vuln
  • --no-pip
  • --path
  • --user
  • --system
  • --target
  • --prefix
  • --upgrade-strategy
  • --upgrade
  • --upgrade-package
  • --break-system-packages
  • --version
  • --help
pip-audit
Description :

Audit de sécurité des dépendances

Options :
  • -r ⚠️
  • --requirement ⚠️
  • --fix ⚠️
  • --dry-run ⚠️
  • --strict
  • -v
  • --verbose
  • -q
  • --quiet
  • --output
  • --output-format ⚠️
python -m safety
Description :

Vérifie les dépendances pour les vulnérabilités connues

Options :
  • check
  • license
  • generate
  • validate
  • scan
  • auth
  • configure
  • alerts
  • help
  • --key
  • --save-json
  • --json
  • --full-report ⚠️
  • --short-report ⚠️
  • --output
  • -o
  • --cache
  • --disable-optional-telemetry
  • --disable-optional-telemetry-data
  • --proxy-protocol
  • --proxy-host
  • --proxy-port
  • -r ⚠️
  • --file ⚠️
  • --ignore
  • --ignore-unpinned-requirements ⚠️
  • --policy-file ⚠️
  • --continue-on-error
  • --audit-and-monitor
  • --stage
  • --project
  • --save
  • --branch
  • --no-ansi
  • --debug
  • -v
  • --version
safety check
Description :

Vérifie les vulnérabilités de sécurité

Options :
  • -r ⚠️
  • --file ⚠️
  • --json
  • --full-report ⚠️
  • --output
  • -o
  • --ignore
  • --cache
python -m pip freeze > requirements.txt
Description :

Exporte les dépendances installées vers requirements.txt

Options :
  • -l
  • --local
  • --user
  • --all
  • --exclude-editable
python -m pipdeptree
Description :

Affiche l'arbre des dépendances

Options :
  • -l
  • --local-only
  • -u
  • --user-only
  • -a
  • --all
  • -p
  • --packages
  • -e
  • --exclude
  • -f ⚠️
  • --freeze ⚠️
  • --graph-output
  • --json-tree
  • --mermaid
  • -w
  • --warn
  • --reverse ⚠️
  • --license
  • --version
  • --help
pipdeptree
Description :

Arbre des dépendances (commande directe)

Options :
  • -l
  • --local-only
  • -a
  • --all
  • -p
  • --packages
  • -e
  • --exclude
  • -f ⚠️
  • --freeze ⚠️
  • --graph-output
  • --json-tree
  • --mermaid
  • --reverse ⚠️
python -m pyreverse
Description :

Génère des diagrammes UML depuis le code Python

Options :
  • -o
  • --output
  • -p
  • --project
  • -c
  • --create
  • -m
  • --module-names
  • -f ⚠️
  • --filter-mode ⚠️
  • -d
  • --diagrams
  • -k
  • --color
  • -i
  • --ignore
  • -s
  • --show
  • -b
  • --branch
  • --source-roots ⚠️
  • --version
  • --help
pyreverse
Description :

Générateur UML (commande directe)

Options :
  • -o
  • --output
  • -p
  • --project
  • -c
  • --create
  • -m
  • --module-names
  • -d
  • --diagrams
  • -k
  • --color
  • -i
  • --ignore
  • -s
  • --show
python -m sphinx
Description :

Générateur de documentation

Options :
  • -b
  • --builder
  • -a
  • -E
  • -d
  • -j
  • -N
  • -n
  • -q
  • -Q
  • -w
  • -W
  • -T
  • -t
  • -c
  • -C
  • -D
  • -A
  • -v
  • --version
  • --help
sphinx-build
Description :

Construit la documentation Sphinx

Options :
  • -b
  • --builder
  • -a
  • -E
  • -d
  • --doctreedir
  • -j
  • --jobs
  • -n
  • --nitpicky
  • -N
  • --no-color
  • -q
  • --quiet
  • -Q
  • --quiet
  • -w
  • --warn-file ⚠️
  • -W
  • --fail-on-warning ⚠️
  • -t
  • --tag
  • -c
  • --config
  • -C
  • --no-config
  • -D
  • --define
  • -A
  • --html-define
  • -v
  • --verbose
sphinx-quickstart
Description :

Crée rapidement une documentation Sphinx

Options :
  • -q
  • --quiet
  • --version
  • --help
sphinx-apidoc
Description :

Génère des fichiers Sphinx depuis le code source

Options :
  • -o
  • --output-dir
  • -f ⚠️
  • --force ⚠️
  • -l
  • --follow-links ⚠️
  • -n
  • --dry-run ⚠️
  • -s
  • --suffix
  • -d
  • --maxdepth
  • -T
  • --no-toc
  • -F ⚠️
  • --full ⚠️
  • -e
  • --separate
  • -E
  • --no-headings
  • -M
  • --module-first ⚠️
  • -P
  • --private
  • -q
  • --quiet
  • --version
  • --help
python -m mkdocs
Description :

Générateur de documentation statique

Options :
  • build
  • serve
  • gh-deploy
  • new
  • get-deps
  • help
  • -f ⚠️
  • --config-file ⚠️
  • -q
  • --quiet
  • -v
  • --verbose
  • --version
  • --help
mkdocs build
Description :

Construit la documentation MkDocs

Options :
  • -f ⚠️
  • --config-file ⚠️
  • -d
  • --site-dir
  • -c
  • --clean
  • -s
  • --strict
  • -t
  • --theme
  • --use-directory-urls
  • --no-directory-urls
  • -q
  • --quiet
  • -v
  • --verbose
mkdocs serve
Description :

Lance un serveur de développement pour la documentation

Options :
  • -f ⚠️
  • --config-file ⚠️
  • -a
  • --dev-addr
  • -s
  • --strict
  • -t
  • --theme
  • --livereload
  • --no-livereload
  • --dirtyreload
  • -q
  • --quiet
  • -v
  • --verbose
  • --watch-theme
mkdocs gh-deploy
Description :

Déploie la documentation sur GitHub Pages

Options :
  • -f ⚠️
  • --config-file ⚠️
  • -m
  • --message
  • -b
  • --remote-branch ⚠️
  • -r ⚠️
  • --remote-name ⚠️
  • -c
  • --clean
  • --dirty
  • --ignore-version
  • --shell
  • -v
  • --verbose
  • -q
  • --quiet
  • --force ⚠️
mkdocs new
Description :

Crée un nouveau projet MkDocs

Options :
  • -f ⚠️
  • --config-file ⚠️
  • -q
  • --quiet
  • -v
  • --verbose
python -m pydoc
Description :

Affiche la documentation d'un module Python

Options :
  • -w
  • -p
  • -g
  • -n
  • -k
  • -b
  • --help
pydoc
Description :

Documentation Python (commande directe)

Options :
  • -w
  • -p
  • -g
  • -n
  • -k
  • -b
python -m twine
Description :

Outil de publication sur PyPI

Options :
  • upload
  • check
  • register
  • help
twine upload
Description :

Publie un package sur PyPI

Options :
  • -r ⚠️
  • --repository ⚠️
  • --repository-url ⚠️
  • -s
  • --sign
  • --sign-with
  • -i
  • --identity
  • -u
  • --username
  • -p
  • --password
  • --non-interactive
  • --cert
  • --client-cert
  • --verbose
  • --disable-progress-bar
  • --comment
  • --skip-existing
twine check
Description :

Vérifie la conformité d'un package

Options :
  • --strict
  • --verbose
python -m build
Description :

Construit un package Python (PEP 517)

Options :
  • -s
  • --sdist
  • -w
  • --wheel
  • -o
  • --outdir
  • --skip-dependency-check
  • --no-isolation
  • --config-setting
  • -C
  • -v
  • --verbose
  • -q
  • --quiet
  • --version
  • --help
python -m wheel
Description :

Gère les packages wheel

Options :
  • pack
  • unpack
  • sign
  • unsign
  • verify
  • install
  • convert
  • version
  • help
python -m nuitka
Description :

Compile Python en exécutable natif

Options :
  • --standalone
  • --onefile
  • --follow-imports ⚠️
  • --include-package
  • --include-module
  • --include-plugin-directory
  • --output-dir
  • -o
  • --output-filename ⚠️
  • --windows-icon-from-ico ⚠️
  • --macos-create-app-bundle
  • --macos-app-icon
  • --linux-onefile-icon
  • --company-name
  • --product-name
  • --file-version ⚠️
  • --product-version
  • --file-description ⚠️
  • --copyright
  • --trademarks
  • --enable-plugin
  • --disable-plugin
  • --plugin-no-detection
  • --assume-yes-for-downloads ⚠️
  • --clang
  • --mingw64
  • --msvc
  • --lto
  • --jobs
  • --show-scons
  • --show-progress
  • --verbose
  • --quiet
  • --version
  • --help
nuitka
Description :

Compilateur Python (commande directe)

Options :
  • --standalone
  • --onefile
  • --follow-imports ⚠️
  • --include-package
  • --output-dir
  • -o
  • --windows-icon-from-ico ⚠️
  • --enable-plugin
  • --disable-plugin
  • --lto
  • --jobs
  • --verbose
  • --quiet
python -m pyinstaller
Description :

Crée des exécutables standalone depuis Python

Options :
  • -F ⚠️
  • --onefile
  • -D
  • --onedir
  • -w
  • --windowed
  • --noconsole
  • -c
  • --console
  • -i
  • --icon
  • --add-data
  • --add-binary
  • -p
  • --paths
  • --hidden-import
  • --collect-all
  • --collect-data
  • --collect-binaries
  • --collect-submodules
  • --copy-metadata
  • --recursive-copy-metadata ⚠️
  • --additional-hooks-dir
  • --runtime-hook ⚠️
  • --exclude-module
  • --key
  • --upx-dir
  • --upx
  • --noupx
  • -n
  • --name
  • --distpath
  • --workpath
  • -y
  • --noconfirm
  • --clean
  • --log-level
  • -v
  • --version
  • --help
pyinstaller
Description :

Créateur d'exécutables (commande directe)

Options :
  • -F ⚠️
  • --onefile
  • -D
  • --onedir
  • -w
  • --windowed
  • -c
  • --console
  • -i
  • --icon
  • --add-data
  • --hidden-import
  • --exclude-module
  • -n
  • --name
  • --clean
  • -y
  • --noconfirm
python -m cxfreeze
Description :

Alternative à PyInstaller

Options :
  • --script
  • --target-dir
  • --target-name
  • --base-name
  • --icon
  • --include-path
  • --include-modules
  • --exclude-modules
  • --packages
  • --replace-paths ⚠️
  • --compress
  • --silent
  • --quiet
  • -q
  • --verbose
  • -v
  • --version
  • --help
cxfreeze
Description :

Freeze Python (commande directe)

Options :
  • --script
  • --target-dir
  • --target-name
  • --icon
  • --include-modules
  • --exclude-modules
  • --packages
  • --compress
  • -q
  • --quiet
  • -v
  • --verbose
python -m jupyter
Description :

Lance Jupyter (notebooks)

Options :
  • notebook
  • lab
  • console
  • qtconsole
  • kernelspec
  • migrate
  • troubleshoot
  • help
jupyter notebook
Description :

Lance Jupyter Notebook

Options :
  • --port
  • --ip
  • --no-browser
  • --NotebookApp.token
  • --NotebookApp.password
  • --config
  • --debug
  • --generate-config
  • --certfile
  • --keyfile
  • --log-level
  • --version
  • --help
jupyter lab
Description :

Lance Jupyter Lab

Options :
  • --port
  • --ip
  • --no-browser
  • --NotebookApp.token
  • --NotebookApp.password
  • --config
  • --debug
  • --generate-config
  • --certfile
  • --keyfile
  • --log-level
  • --version
  • --help
  • --watch
  • --dev-mode
  • --clean
  • --splice-source
  • --extensions-in-dev-mode
  • --collaborative
python -m ipykernel
Description :

Gère les kernels Jupyter

Options :
  • install
  • uninstall
  • --user
  • --name
  • --display-name
  • --prefix
  • --sys-prefix
  • --env
  • --replace ⚠️
  • --version
  • --help
python -m streamlit
Description :

Framework pour applications de données

Options :
  • run
  • hello
  • config
  • cache
  • version
  • docs
  • help
streamlit run
Description :

Lance une application Streamlit

Options :
  • --server.port
  • --server.address
  • --server.headless
  • --server.runOnSave
  • --server.enableCORS
  • --server.enableXsrfProtection
  • --server.enableWebsocketCompression
  • --browser.serverAddress
  • --browser.serverPort
  • --browser.gatherUsageStats
  • --logger.level
  • --logger.messageFormat
  • --client.toolbarMode
  • --client.showErrorDetails
  • --runner.fastReruns ⚠️
  • --runner.magicEnabled ⚠️
  • --theme.base
  • --theme.primaryColor
  • --theme.backgroundColor
  • --theme.secondaryBackgroundColor
  • --theme.textColor
  • --theme.font
  • --global.developmentMode
  • --global.dataFrameSerialization
  • --global.sharingMode
  • --global.unitTest
  • --global.suppressDeprecationWarnings
  • --global.showWarningOnDirectExecution
  • --global.disableWidgetStateDuplicationWarning
  • --help
streamlit hello
Description :

Lance l'application de démonstration Streamlit

Options :
  • --server.port
  • --server.address
  • --browser.gatherUsageStats
  • --help
streamlit cache
Description :

Gère le cache de Streamlit

Options :
  • clear
  • help
python -m flask
Description :

Micro-framework web Flask

Options :
  • run
  • shell
  • routes
  • help
flask run
Description :

Lance l'application Flask

Options :
  • -h
  • --host
  • -p
  • --port
  • --reload ⚠️
  • --debugger
  • --eager-loading
  • --with-threads
  • --extra-files ⚠️
  • --exclude-patterns
  • --cert
  • --key
flask shell
Description :

Lance un shell interactif avec contexte Flask

flask routes
Description :

Affiche les routes de l'application Flask

Options :
  • --sort
  • --all-methods
python -m django
Description :

Framework web Django

Options :
  • startproject
  • startapp
  • runserver
  • shell
  • makemigrations
  • migrate
  • createsuperuser
  • collectstatic
  • test
  • check
  • help
django-admin
Description :

Utilitaire d'administration Django

Options :
  • startproject
  • startapp
  • runserver
  • shell
  • makemigrations
  • migrate
  • createsuperuser
  • collectstatic
  • test
  • check
  • changepassword
  • clearsessions
  • compilemessages
  • createcachetable
  • dbshell
  • diffsettings
  • dumpdata
  • flush
  • inspectdb
  • loaddata
  • makemessages
  • optimizemigration
  • sendtestemail
  • showmigrations
  • sqlflush
  • sqlmigrate
  • sqlsequencereset
  • squashmigrations
  • --version
  • --help
python manage.py runserver
Description :

Lance le serveur de développement Django

Options :
  • --ipv6
  • --nothreading
  • --noreload
  • --nostatic
  • --insecure
  • addrport
python manage.py makemigrations
Description :

Crée les migrations Django

Options :
  • --dry-run ⚠️
  • --merge
  • --empty
  • --name
  • -n
  • --no-header
  • --check
  • --verbosity
  • -v
  • --settings
python manage.py migrate
Description :

Applique les migrations Django

Options :
  • --fake ⚠️
  • --fake-initial ⚠️
  • --plan
  • --run-syncdb ⚠️
  • --noinput
  • --database
  • --verbosity
  • -v
  • --settings
python manage.py createsuperuser
Description :

Crée un superutilisateur Django

Options :
  • --username
  • --email
  • --database
  • --noinput
  • --verbosity
  • -v
  • --settings
python manage.py shell
Description :

Lance le shell interactif Django

Options :
  • --command
  • -c
  • --interface
  • -i
  • --no-startup
  • --verbosity
  • -v
  • --settings
python manage.py test
Description :

Lance les tests Django

Options :
  • --noinput
  • --failfast ⚠️
  • --testrunner
  • --liveserver
  • -k
  • -p
  • --parallel
  • --debug-mode
  • --debug-sql
  • --buffer
  • -b
  • --tag
  • --exclude-tag
  • --keepdb
  • --reverse ⚠️
  • -r ⚠️
  • --shuffle
  • --timing
  • -t
  • --verbosity
  • -v
  • --settings
python manage.py collectstatic
Description :

Collecte les fichiers statiques Django

Options :
  • --noinput
  • --ignore
  • -i
  • --dry-run ⚠️
  • --clear
  • --link
  • -l
  • --no-post-process
  • --verbosity
  • -v
  • --settings
python -m fastapi
Description :

Framework web moderne FastAPI

Options :
  • dev
  • run
  • help
fastapi dev
Description :

Lance FastAPI en mode développement

Options :
  • --host
  • --port
  • --reload ⚠️
  • --reload-dir ⚠️
  • --reload-include ⚠️
  • --reload-exclude ⚠️
  • --reload-delay ⚠️
  • --workers
  • --root-path ⚠️
  • --proxy-headers
  • --forwarded-allow-ips ⚠️
  • --timeout-keep-alive
  • --timeout-graceful-shutdown
  • --ssl-keyfile
  • --ssl-certfile
  • --ssl-keyfile-password
  • --ssl-version
  • --ssl-cert-reqs ⚠️
  • --ssl-ca-certs
  • --ssl-ciphers
  • --app
  • --factory ⚠️
  • --env-file ⚠️
  • --log-level
  • --log-config
  • --access-log
  • --use-colors
  • --help
fastapi run
Description :

Lance FastAPI en production

Options :
  • --host
  • --port
  • --workers
  • --root-path ⚠️
  • --proxy-headers
  • --forwarded-allow-ips ⚠️
  • --timeout-keep-alive
  • --timeout-graceful-shutdown
  • --ssl-keyfile
  • --ssl-certfile
  • --ssl-keyfile-password
  • --ssl-version
  • --ssl-cert-reqs ⚠️
  • --ssl-ca-certs
  • --ssl-ciphers
  • --app
  • --factory ⚠️
  • --env-file ⚠️
  • --log-level
  • --log-config
  • --access-log
  • --use-colors
  • --help
uvicorn
Description :

Serveur ASGI pour FastAPI/Starlette

Options :
  • --host
  • --port
  • --workers
  • -w
  • --reload ⚠️
  • --reload-dir ⚠️
  • --reload-include ⚠️
  • --reload-exclude ⚠️
  • --reload-delay ⚠️
  • --loop
  • --http
  • --ws
  • --lifespan
  • --interface
  • --env-file ⚠️
  • --log-level
  • --log-config
  • --access-log
  • --use-colors
  • --proxy-headers
  • --forwarded-allow-ips ⚠️
  • --root-path ⚠️
  • --limit-concurrency
  • --backlog
  • --limit-max-requests ⚠️
  • --timeout-keep-alive
  • --timeout-graceful-shutdown
  • --ssl-keyfile
  • --ssl-certfile
  • --ssl-keyfile-password
  • --ssl-version
  • --ssl-cert-reqs ⚠️
  • --ssl-ca-certs
  • --ssl-ciphers
  • --app-dir
  • --factory ⚠️
  • --help
  • --version
gunicorn
Description :

Serveur WSGI pour Django/Flask

Options :
  • -w
  • --workers
  • -k
  • --worker-class
  • --threads
  • --worker-connections
  • --max-requests ⚠️
  • --max-requests-jitter ⚠️
  • --timeout
  • --graceful-timeout
  • --keep-alive
  • --limit-request-line ⚠️
  • --limit-request-fields ⚠️
  • --limit-request-field-size ⚠️
  • --reload ⚠️
  • --reload-engine ⚠️
  • --reload-extra-file ⚠️
  • --spew
  • --check-config
  • --print-config
  • -c
  • --config
  • -b
  • --bind
  • --backlog
  • -D
  • --daemon
  • -p
  • --pid
  • --worker-tmp-dir
  • --user
  • --group
  • -m
  • --umask
  • --initgroups
  • --forwarded-allow-ips ⚠️
  • --access-logfile
  • --disable-redirect-access-to-syslog ⚠️
  • --access-logformat
  • --error-logfile
  • --log-level
  • -L
  • --log-file ⚠️
  • --log-config
  • --log-syslog
  • --log-syslog-facility ⚠️
  • -R ⚠️
  • --statsd-host
  • --statsd-prefix
  • --dogstatsd-tags
  • --pythonpath
  • --paste
  • --proxy-protocol
  • --proxy-allow-from ⚠️
  • --keyfile
  • --certfile
  • --ca-certs
  • --suppress-ragged-eofs ⚠️
  • --do-handshake-on-connect
  • --ciphers
  • --ssl-version
  • --cert-reqs ⚠️
  • --preload
  • --reuse-port ⚠️
  • --chdir
  • --name
  • --env
  • -e
  • --preload-app
  • --sendfile
  • --capture-output
  • --enable-stdio-inheritance
  • -v
  • --version
  • -h
  • --help
python -m celery
Description :

Traitement de tâches asynchrones

Options :
  • worker
  • beat
  • events
  • shell
  • multi
  • amqp
  • list
  • call
  • purge
  • control
  • status
  • result
  • migrate
  • upgrade
  • graph
  • logtool
  • report
  • help
celery worker
Description :

Lance un worker Celery

Options :
  • -A
  • --app
  • -c
  • --concurrency
  • -n
  • --hostname
  • -Q
  • --queues
  • -X
  • --exclude-queues
  • -I
  • --include
  • -l
  • --loglevel
  • -f ⚠️
  • --logfile
  • --pidfile
  • --statedb
  • -S
  • --statedb
  • -E
  • --task-events
  • --without-gossip
  • --without-mingle
  • --without-heartbeat
  • --heartbeat-interval
  • -O
  • --optimization
  • --autoscale
  • --max-tasks-per-child
  • --max-memory-per-child
  • --time-limit
  • --soft-time-limit
  • --prefetch-multiplier
  • --disable-prefetch
  • -P
  • --pool
  • --purge
  • --discard
  • --scheduler
  • -B
  • --beat
  • --detach
  • -D
  • --uid
  • --gid
  • --umask
  • --workdir
  • --executable
  • --help
celery beat
Description :

Lance le scheduler Celery Beat

Options :
  • -A
  • --app
  • -s
  • --schedule
  • --pidfile
  • --max-interval
  • -S
  • --scheduler
  • -l
  • --loglevel
  • -f ⚠️
  • --logfile
  • --detach
  • -D
  • --uid
  • --gid
  • --umask
  • --workdir
  • --help
python -m redis-cli
Description :

Client Redis en ligne de commande

Options :
  • -h
  • --host
  • -p
  • --port
  • -s
  • --socket
  • -a
  • --pass
  • --user
  • --pass
  • -u
  • --uri
  • -n
  • --db
  • -c
  • --cluster
  • --no-auth-warning
  • --raw ⚠️
  • --no-raw ⚠️
  • --csv
  • --stat
  • --latency
  • --latency-history
  • --latency-dist
  • --lru-test
  • --rdb ⚠️
  • --pipe
  • --pipe-timeout
  • --bigkeys
  • --memkeys
  • --memkeys-samples
  • --hotkeys
  • --scan
  • --pattern
  • --intrinsic-latency
  • --eval
  • --ldb
  • --ldb-sync-mode
  • --verbose
  • --no-log-prefix
  • --help
  • --version
python -m alembic
Description :

Gestionnaire de migrations pour SQLAlchemy

Options :
  • init
  • revision
  • upgrade
  • downgrade
  • current
  • history
  • heads
  • branches
  • show
  • stamp
  • merge
  • edit
  • ensure_version
  • list_templates
  • help
alembic init
Description :

Initialise Alembic

Options :
  • -t
  • --template
  • --package
  • --version-path
  • --help
alembic revision
Description :

Crée une nouvelle migration

Options :
  • -m
  • --message
  • --autogenerate
  • --sql
  • --head
  • --splice
  • --branch-label
  • --version-path
  • --rev-id ⚠️
  • --depends-on
  • --help
alembic upgrade
Description :

Applique les migrations

Options :
  • --sql
  • --tag
  • --help
alembic downgrade
Description :

Annule des migrations

Options :
  • --sql
  • --tag
  • --help
alembic current
Description :

Affiche la révision courante

Options :
  • --verbose
  • -v
  • --help
alembic history
Description :

Affiche l'historique des migrations

Options :
  • --verbose
  • -v
  • --rev-range ⚠️
  • -r ⚠️
  • --indicate-current
  • -i
  • --help
python -m pre-commit
Description :

Framework de hooks Git

Options :
  • install
  • uninstall
  • run
  • autoupdate
  • clean
  • gc
  • init-templatedir
  • sample-config
  • validate-config
  • validate-manifest
  • help
  • -h
  • --help
  • -V
  • --version
  • -c
  • --config
  • --color
  • --no-color
  • --verbose
  • -v
  • --quiet
  • -q

Partager