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


Python rourl2path.url2pathname方法代码示例

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


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

示例1: url2pathname

# 需要导入模块: import rourl2path [as 别名]
# 或者: from rourl2path import url2pathname [as 别名]
def url2pathname(pathname):
        """OS-specific conversion from a relative URL of the 'file' scheme
        to a file system path; not recommended for general use."""
        return unquote(pathname) 
开发者ID:glmcdona,项目名称:meddle,代码行数:6,代码来源:urllib.py

示例2: open_local_file

# 需要导入模块: import rourl2path [as 别名]
# 或者: from rourl2path import url2pathname [as 别名]
def open_local_file(self, url):
        """Use local file."""
        import mimetypes, mimetools, email.utils
        try:
            from cStringIO import StringIO
        except ImportError:
            from StringIO import StringIO
        host, file = splithost(url)
        localname = url2pathname(file)
        try:
            stats = os.stat(localname)
        except OSError, e:
            raise IOError(e.errno, e.strerror, e.filename) 
开发者ID:glmcdona,项目名称:meddle,代码行数:15,代码来源:urllib.py

示例3: retrieve

# 需要导入模块: import rourl2path [as 别名]
# 或者: from rourl2path import url2pathname [as 别名]
def retrieve(self, url, filename=None, reporthook=None, data=None):
        """retrieve(url) returns (filename, headers) for a local object
        or (tempfilename, headers) for a remote object."""
        url = unwrap(toBytes(url))
        if self.tempcache and url in self.tempcache:
            return self.tempcache[url]
        type, url1 = splittype(url)
        if filename is None and (not type or type == 'file'):
            try:
                fp = self.open_local_file(url1)
                hdrs = fp.info()
                fp.close()
                return url2pathname(splithost(url1)[1]), hdrs
            except IOError, msg:
                pass 
开发者ID:ofermend,项目名称:medicare-demo,代码行数:17,代码来源:urllib.py

示例4: open_local_file

# 需要导入模块: import rourl2path [as 别名]
# 或者: from rourl2path import url2pathname [as 别名]
def open_local_file(self, url):
        """Use local file."""
        import mimetypes, mimetools, email.Utils
        try:
            from cStringIO import StringIO
        except ImportError:
            from StringIO import StringIO
        host, file = splithost(url)
        localname = url2pathname(file)
        try:
            stats = os.stat(localname)
        except OSError, e:
            raise IOError(e.errno, e.strerror, e.filename) 
开发者ID:ofermend,项目名称:medicare-demo,代码行数:15,代码来源:urllib.py


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