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


Python backwardcompat.raw_input方法代码示例

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


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

示例1: handle_401

# 需要导入模块: from pip import backwardcompat [as 别名]
# 或者: from pip.backwardcompat import raw_input [as 别名]
def handle_401(self, resp, **kwargs):
        # We only care about 401 responses, anything else we want to just
        #   pass through the actual response
        if resp.status_code != 401:
            return resp

        # We are not able to prompt the user so simple return the response
        if not self.prompting:
            return resp

        parsed = urlparse.urlparse(resp.url)

        # Prompt the user for a new username and password
        username = raw_input("User for %s: " % parsed.netloc)
        password = getpass.getpass("Password: ")

        # Store the new username and password to use for future requests
        if username or password:
            self.passwords[parsed.netloc] = (username, password)

        # Consume content and release the original connection to allow our new
        #   request to reuse the same one.
        resp.content
        resp.raw.release_conn()

        # Add our new username and password to the request
        req = HTTPBasicAuth(username or "", password or "")(resp.request)

        # Send our new request
        new_resp = resp.connection.send(req, **kwargs)
        new_resp.history.append(resp)

        return new_resp 
开发者ID:sugarguo,项目名称:Flask_Blog,代码行数:35,代码来源:download.py


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