当前位置: 首页>>代码示例>>Python>>正文


Python wheel.Wheel方法代码示例

本文整理汇总了Python中pip._internal.wheel.Wheel方法的典型用法代码示例。如果您正苦于以下问题:Python wheel.Wheel方法的具体用法?Python wheel.Wheel怎么用?Python wheel.Wheel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pip._internal.wheel的用法示例。


在下文中一共展示了wheel.Wheel方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import Wheel [as 别名]
def get(self, link, package_name):
        candidates = []

        for wheel_name in self._get_candidates(link, package_name):
            try:
                wheel = Wheel(wheel_name)
            except InvalidWheelFilename:
                continue
            if not wheel.supported():
                # Built for a different python/arch/etc
                continue
            candidates.append((wheel.support_index_min(), wheel_name))

        if not candidates:
            return link

        return self._link_for_candidate(link, min(candidates)[1]) 
开发者ID:HaoZhang95,项目名称:Python24,代码行数:19,代码来源:cache.py

示例2: get

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import Wheel [as 别名]
def get(self, link, package_name):
        # type: (Link, Optional[str]) -> Link
        candidates = []

        for wheel_name in self._get_candidates(link, package_name):
            try:
                wheel = Wheel(wheel_name)
            except InvalidWheelFilename:
                continue
            if not wheel.supported():
                # Built for a different python/arch/etc
                continue
            candidates.append((wheel.support_index_min(), wheel_name))

        if not candidates:
            return link

        return self._link_for_candidate(link, min(candidates)[1]) 
开发者ID:PacktPublishing,项目名称:Mastering-Elasticsearch-7.0,代码行数:20,代码来源:cache.py

示例3: get

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import Wheel [as 别名]
def get(
        self,
        link,            # type: Link
        package_name,    # type: Optional[str]
        supported_tags,  # type: List[Pep425Tag]
    ):
        # type: (...) -> Link
        candidates = []

        for wheel_name in self._get_candidates(link, package_name):
            try:
                wheel = Wheel(wheel_name)
            except InvalidWheelFilename:
                continue
            if not wheel.supported(supported_tags):
                # Built for a different python/arch/etc
                continue
            candidates.append(
                (wheel.support_index_min(supported_tags), wheel_name)
            )

        if not candidates:
            return link

        return self._link_for_candidate(link, min(candidates)[1]) 
开发者ID:boris-kz,项目名称:CogAlg,代码行数:27,代码来源:cache.py

示例4: cached_wheels

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import Wheel [as 别名]
def cached_wheels(tmpdir):
    for _, _, filenames in os.walk(
            tmpdir.join('home', '.cache', 'pip-faster', 'wheelhouse').strpath,
    ):
        for filename in filenames:
            assert filename.endswith('.whl'), filename
            yield Wheel(filename) 
开发者ID:Yelp,项目名称:venv-update,代码行数:9,代码来源:__init__.py

示例5: optimistic_wheel_search

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import Wheel [as 别名]
def optimistic_wheel_search(req, index_urls):
    name = req.name.replace('-', '_').lower()

    for index_url in index_urls:
        expected_location = os.path.join(
            CACHE.wheelhouse, index_url, ignorecase_glob(name) + '-*.whl',
        )
        for link in glob.glob(expected_location):
            link = Link('file:' + link)
            wheel = Wheel(link.filename)
            if req.specifier.contains(wheel.version) and wheel.supported():
                return link 
开发者ID:Yelp,项目名称:venv-update,代码行数:14,代码来源:pip_faster.py


注:本文中的pip._internal.wheel.Wheel方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。