本文整理汇总了Python中pip._vendor.urllib3.poolmanager.PoolManager方法的典型用法代码示例。如果您正苦于以下问题:Python poolmanager.PoolManager方法的具体用法?Python poolmanager.PoolManager怎么用?Python poolmanager.PoolManager使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pip._vendor.urllib3.poolmanager
的用法示例。
在下文中一共展示了poolmanager.PoolManager方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: init_poolmanager
# 需要导入模块: from pip._vendor.urllib3 import poolmanager [as 别名]
# 或者: from pip._vendor.urllib3.poolmanager import PoolManager [as 别名]
def init_poolmanager(self, connections, maxsize, block=DEFAULT_POOLBLOCK, **pool_kwargs):
"""Initializes a urllib3 PoolManager.
This method should not be called from user code, and is only
exposed for use when subclassing the
:class:`HTTPAdapter <requests.adapters.HTTPAdapter>`.
:param connections: The number of urllib3 connection pools to cache.
:param maxsize: The maximum number of connections to save in the pool.
:param block: Block when no free connections are available.
:param pool_kwargs: Extra keyword arguments used to initialize the Pool Manager.
"""
# save these values for pickling
self._pool_connections = connections
self._pool_maxsize = maxsize
self._pool_block = block
self.poolmanager = PoolManager(num_pools=connections, maxsize=maxsize,
block=block, strict=True, **pool_kwargs)