繁体   English   中英

修改html文件(查找并替换href网址并保存)

[英]Modify html file (Find and replace href url and save it)

EDIT1:

我在原始代码中发现了一个错误,该错误给了我typeError。 因此答案就在这里: BeautifulSoup-修改HTML中的所有链接? 该代码现在可以正常工作了。

我有一个html文件,我想为其他人更改一些href网址,然后再次将其另存为html文件。 我的目标是,当我打开html文件并单击链接时,它将带我到一个内部文件夹,而不是Internet网址(原始网址)。

我的意思是,我想将以下内容: <a href="http://www.somelink.com">转换为: <a href="C:/myFolder/myFile.html">

我试图用bs4打开文件并使用替换功能,但是我遇到TypeError: 'NoneType' object is not callable

现在这是我的代码:


# Dict which relates the original links with my the ones to replace them

links_dict = { original_link1 : my_link1 , original_link2 : my_link2 } # and so on..

# Get a list of links to loop and find them into the html file

original_links = links_dict .keys() 

soup = BeautifulSoup(open(html_file), "html.parser",encoding="utf8")

# This part is where I am stuck, the theory is loop through 'original_links'
 and if any of those links is found, replace it with the one I have in 'links_dict'

for link in soup.find_all('a',href=True):
    if link['href'] in links_dict:
        link['href'] = link['href'].replace(link['href'],links_dict[link['href']]

with open("new_file.html", "w",encoding="utf8") as file:
    file.write(str(soup))

有任何想法吗?

处理完汤后,应该查找“ a”元素,然后检查其“ href”属性,如果它们与您的字典中的属性匹配,请根据需要进行替换。

我会制作“ original_link1”等正则表达式,以便您轻松进行匹配。

碰巧的是,我相信您的问题已经得到解答,请参阅BeautifulSoup-修改HTML中的所有链接?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM