python (3.12.0)
1 from typing import List, Optional
2
3 __version__ = "23.2.1"
4
5
6 def main(args: Optional[List[str]] = None) -> int:
7 """This is an internal API only meant for use by pip's own console scripts.
8
9 For additional details, see https://github.com/pypa/pip/issues/7498.
10 """
11 from pip._internal.utils.entrypoints import _wrapper
12
13 return _wrapper(args)