def __init__(self, url_string):
split_url = urllib_parse.urlsplit(url_string)
self.scheme = split_url.scheme #:
self.username = split_url.username #:
self.password = split_url.password #:
self.hostname = split_url.hostname #:
self.port = split_url.port #:
self.path = split_url.path #:
self.query = split_url.query #:
self.fragment = split_url.fragment #:
评论列表
文章目录