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

14 lines
355 B
Python
Raw Normal View History

2026-06-16 17:09:34 +00:00
from typing import List, Optional
2026-02-06 22:23:20 +01:00
2026-06-16 17:09:34 +00:00
__version__ = "24.0"
2026-02-06 22:23:20 +01:00
2026-06-16 17:09:34 +00:00
def main(args: Optional[List[str]] = None) -> int:
2026-02-06 22:23:20 +01:00
"""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)