gpt4 book ai didi

python - 将 URL 路径拆分为组件

转载 作者:行者123 更新时间:2023-11-28 21:43:56 26 4
gpt4 key购买 nike

给定一个 URL http://www.example.com/users/john-doe/detail,我如何创建这种形式的列表 ['/users', '/users/john-doe', '/users/john-doe/detail']?

最佳答案

您可以使用 urlparse获取 URL 路径,然后拆分部分并构建路径变体:

>>> from urllib.parse import urlparse  # Python 3.x
>>>
>>> url = "http://www.example.com/users/john-doe/detail"
>>> urlparse(url)
>>>
>>> path = urlparse(url).path[1:]
>>> parts = path.split('/')
>>> ['/' + '/'.join(parts[:index+1]) for index in range(len(parts))]
['/users', '/users/john-doe', '/users/john-doe/detail']

关于python - 将 URL 路径拆分为组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41471287/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com