本文整理汇总了Python中purl.URL.scheme方法的典型用法代码示例。如果您正苦于以下问题:Python URL.scheme方法的具体用法?Python URL.scheme怎么用?Python URL.scheme使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类purl.URL
的用法示例。
在下文中一共展示了URL.scheme方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: url
# 需要导入模块: from purl import URL [as 别名]
# 或者: from purl.URL import scheme [as 别名]
def url(self, path='/', **query):
url = URL(path)
if not url.host():
url = url.host(self.host)
if not url.scheme():
url = url.scheme('http')
for k, v in query.items():
url = url.query_param(k, v)
return url
示例2: __init__
# 需要导入模块: from purl import URL [as 别名]
# 或者: from purl.URL import scheme [as 别名]
def __init__(self, url, save_dir='tmp'):
"""
@url: full url of a site
@save_dir: dir to save site
"""
# log
self.logger = logger('file', 'sitelog.log', save_dir)
self.logger.info('-' * 20)
self.logger.info('start')
self.logger.info('start func: __init__')
self.logger.info('url: %s' % url)
save_time = datetime.strftime(datetime.now(), '%Y%m%d%H%M')
self.save_time = save_time
self.save_dir = os.path.abspath(os.path.join(save_dir, save_time))
# create dir if not exist
if not os.path.isdir(self.save_dir):
os.makedirs(self.save_dir)
self.url = url
u = URL(url)
# get host like: http://m.sohu.xom
self.host = u.scheme() + '://' + u.host()
print '%s: saving %s' % (save_time, self.url)
self.logger.info('end func: __init__')
示例3: Segments
# 需要导入模块: from purl import URL [as 别名]
# 或者: from purl.URL import scheme [as 别名]
class Segments(object):
"""
URL segment handler, not intended for direct use. The URL is constructed by
joining base, path and segments.
"""
def __init__(self, base, path, segments, defaults):
# Preserve the base URL
self.base = PURL(base, path=path)
# Map the segments and defaults lists to an ordered dict
self.segments = OrderedDict(zip(segments, defaults))
def build(self):
# Join base segments and segments
segments = self.base.path_segments() + tuple(self.segments.values())
# Create a new URL with the segments replaced
url = self.base.path_segments(segments)
return url
def full_path(self):
full_path = self.build().as_string()
full_path = full_path.replace(self.base.host(), '')
full_path = full_path.replace(self.base.scheme(), '')
return full_path[4:]
def __str__(self):
return self.build().as_string()
def _get_segment(self, segment):
return self.segments[segment]
def _set_segment(self, segment, value):
self.segments[segment] = value
@classmethod
def _segment(cls, segment):
"""
Returns a property capable of setting and getting a segment.
"""
return property(
fget=lambda x: cls._get_segment(x, segment),
fset=lambda x, v: cls._set_segment(x, segment, v),
)
示例4: maybe_external_link
# 需要导入模块: from purl import URL [as 别名]
# 或者: from purl.URL import scheme [as 别名]
def maybe_external_link(text, **kw):
url = URL(text)
if url.host() and url.scheme() in ['http', 'https']:
return external_link(text, **kw)
return text
示例5: URL
# 需要导入模块: from purl import URL [as 别名]
# 或者: from purl.URL import scheme [as 别名]
service_config = config_request.json()
log.debug('Service config: %s', service_config)
except:
log.error("Invalid configuration URI", exc_info=True)
sys.exit(2)
# Do some sanity checks on the config
requiredAttribs = ['serviceName', 'package', 'components', 'configurations']
for attrib in requiredAttribs:
if not attrib in service_config:
log.error("Invalid configuration. Missing required attribute '%s'", attrib)
sys.exit(3)
log.info('Installing service: %s on ambari host: %s', service_config['serviceName'], args.ambari_host)
ambari_host_uri = URL(args.ambari_host)
ambari_client = Ambari(ambari_host_uri.host(), port=ambari_host_uri.port(), protocol=ambari_host_uri.scheme(), username=args.username, password=args.password, identifier='hdiapps')
# If this is being invoked from outside the cluster, we must fixup the href references contained within the responses
ambari_client.client.request_params['hooks'] = dict(response=shared_lib.Fixup(ambari_host_uri).fixup)
# Assume we only have 1 cluster managed by this Ambari installation
cluster = ambari_client.clusters.next()
log.debug('Cluster: %s, href: %s', cluster.cluster_name, cluster._href)
# Pull in any extra dynamic configuration
if args.extra_config:
try:
extra_config = json.loads(args.extra_config)
log.debug('Applying dynamic service configuration specified on command-line: %s', extra_config)
except:
log.warning('Extra configuration specified by the -x argument could not be parsed as JSON. The value was \'%s\'. Details: ', args.extra_config, exc_info=True)
extra_config = {}
else:
示例6: wikipedia_url
# 需要导入模块: from purl import URL [as 别名]
# 或者: from purl.URL import scheme [as 别名]
def wikipedia_url(s): # pragma: no cover
url = URL(s)
if url.scheme() in ['http', 'https'] and 'wikipedia.' in url.host():
return s