Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
keewenaw
GitHub Repository: keewenaw/ethereum-wallet-cracker
Path: blob/main/test/lib/python3.9/site-packages/pip/__init__.py
4798 views
1
from typing import List, Optional
2
3
__version__ = "22.1.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)
14
15