gpt4 book ai didi

python - 将重定向 URL 的一部分复制为文本

转载 作者:太空宇宙 更新时间:2023-11-04 06:23:47 24 4
gpt4 key购买 nike

好的,这基本上就是我正在尝试做的事情:

假设我有一个 URL 作为输入,该 URL 重定向到另一个 URL。好吧,我需要记下第二个网址的一部分

例子:

www.whatever.com/search/dunno 重定向到 www.whatever.com/database/important_part

我需要的是在文件中写入“important_part”。

也许这是一件愚蠢的事情,但我对这些东西很陌生,抱歉。

编辑 - 更好的例子:

网址 http://anidb.net/perl-bin/animedb.pl?show=animelist&adb.search="Cowboy Bebop"&do.search=search重定向到 http://anidb.net/perl-bin/animedb.pl?show=anime&aid=23

假设我想记下 ID(在该示例中为 23)。

最佳答案

你想要 urlparse模块:

from urlparse import urlparse
parsed_url = urlparse("www.whatever.com/database/important_part")
log_file.write("Redirected to: {p}\n".format(p=parsed_url.path.split('/')[-1]))

关于python - 将重定向 URL 的一部分复制为文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9977392/

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