Cours/venv/lib/python3.12/site-packages/pip/__init__.py

14 lines
357 B
Python
Raw Normal View History

2024-09-02 16:55:06 +00:00
from typing import List, Optional
2024-09-05 15:01:34 +00:00
__version__ = "24.1.1"
2024-09-02 16:55:06 +00:00
def main(args: Optional[List[str]] = None) -> int:
"""This is an internal API only meant for use by pip's own console scripts.
For additional details, see https://github.com/pypa/pip/issues/7498.
"""
from pip._internal.utils.entrypoints import _wrapper
return _wrapper(args)