gpt4 book ai didi

python - 使用正则表达式改进 html 代码中的过滤器链接

转载 作者:行者123 更新时间:2023-12-01 01:33:16 37 4
gpt4 key购买 nike

我的项目的目的是网络剪贴搜索引擎(我选择DuckDuckGo)。要获取第一页上的所有链接,然后输入其中的每个链接,请获取 HTML 源代码并执行正则表达式来过滤所有 .onion HTML 代码内的网站。

我假设从这里我们已经抓取了搜索引擎并在第一页中获取了所有网站(我在 DuckDuckGo 上的搜索词是:暗网“.onion”)

从这里开始,代码是这样的(我将在代码注释中详细说明内容):

import requests
from bs4 import BeautifulSoup
import urllib.parse
import re

html_data=[]

#This will be the list that will contains the HTML code of
#each website I visit. For example, html_data[0]
#will contain all the html source code of the first website,
#html_data[1] of the second website and so on.

for x in links: #links is the list that contains all the websites that I got from web scraping DuckDuckGo.
data = requests.get(str(x))
html_data.append(data.text)

#Now html_data contains all the html source code of all the websites in links

print("")
print("============================ONIONS================================")
print("")


#Here I pass a regex to filter all the content in each case of the list (so that I get only .onion links)

for x in html_data:
for m in re.finditer(r'(?:https?://)?(?:www)?(\S*?\.onion)\b', x, re.M | re.IGNORECASE):
print(m.group(0))

所以我的代码运行完美。但有一个简单的问题。正则表达式没有正确过滤所有内容。一些 HTML 代码嵌套在我的 .onion 网站中。而且,我经常在输出中单独得到 .onion

以下是输出示例:

href="http://jv7aqstbyhd5hqki.onion
class="external_link">http://jv7aqstbyhd5hqki.onion
href="http://xdagknwjc7aaytzh.onion
data-qt-tooltip="xdagknwjc7aaytzh.onion
">http://xdagknwjc7aaytzh.onion
href="http://sbforumaz7v3v6my.onion
class="external_link">http://sbforumaz7v3v6my.onion
href="http://kpmp444tubeirwan.onion
class="external_link">http://kpmp444tubeirwan.onion
href="http://r5c2ch4h5rogigqi.onion
class="external_link">http://r5c2ch4h5rogigqi.onion
href="http://hbjw7wjeoltskhol.onion
class="external_link">http://hbjw7wjeoltskhol.onion
href="http://khqtqnhwvd476kez.onion
class="external_link">http://khqtqnhwvd476kez.onion
href="http://jahfuffnfmytotlv.onion
class="external_link">http://jahfuffnfmytotlv.onion
href="http://ocu3errhpxppmwpr.onion
class="external_link">http://ocu3errhpxppmwpr.onion
href="http://germanyhusicaysx.onion
data-qt-tooltip="germanyhusicaysx.onion
">http://germanyhusicaysx.onion
href="http://qm3monarchzifkwa.onion
class="external_link">http://qm3monarchzifkwa.onion
href="http://qm3monarchzifkwa.onion
class="external_link">http://qm3monarchzifkwa.onion
href="http://spofoh4ucwlc7zr6.onion
data-qt-tooltip="spofoh4ucwlc7zr6.onion
">http://spofoh4ucwlc7zr6.onion
href="http://nifgk5szbodg7qbo.onion
class="external_link">http://nifgk5szbodg7qbo.onion
href="http://t4is3dhdc2jd4yhw.onion
class="external_link">http://t4is3dhdc2jd4yhw.onion

我想知道如何改进此正则表达式,以便获得正确格式的.onion 链接。

最佳答案

你可以使用这个正则表达式。它与 .onion
的 URL 匹配它适用于源 html,获取/测试任何标签的 href 属性。

您不需要使用正则表达式选项,因为它们内联包含。
您想要的位于捕获组 3 中。

r"(?si)<[\w:]+(?=(?:[^>\"']|\"[^\"]*\"|'[^']*')*?(?<=\s)href\s*=\s*(?:(['\"])\s*(((?!mailto:)(?:(?:https?|ftp)://)?(?:(?:(?!\1)\S)+(?::(?:(?!\1)\S)*)?@)?(?:(?:[a-z\u00a1-\uffff0-9]-?)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-?)*[a-z\u00a1-\uffff0-9]+)*?\.onion\b)(?:(?!\1).)*?)\s*\1))\s+(?:\".*?\"|'.*?'|[^>]*?)+>"

https://regex101.com/r/oeYCxX/1

可读版本

 (?si)                         # Dot-all and case insensitive modifiers
< [\w:]+ # Any tag
(?=
(?: [^>"'] | " [^"]* " | ' [^']* ' )*?
(?<= \s )
href \s* = \s* # href attribute
(?:
( ['"] ) # (1)
\s*
( # (2 start), Full url
( # (3 start), The url up to '.onion'
(?! mailto: )
(?:
(?: https? | ftp )
://
)?
(?:
(?:
(?! \1 )
\S
)+
(?:
:
(?:
(?! \1 )
\S
)*
)?
@
)?
(?:
(?: [a-z\u00a1-\uffff0-9] -? )*
[a-z\u00a1-\uffff0-9]+
)
(?:
\.
(?: [a-z\u00a1-\uffff0-9] -? )*
[a-z\u00a1-\uffff0-9]+
)*?
\.onion \b
) # (3 end)
(?: # Parameters
(?! \1 )
.
)*?
) # (2 end)
\s* \1
)
)
\s+
(?: " .*? " | ' .*? ' | [^>]*? )+
>

关于python - 使用正则表达式改进 html 代码中的过滤器链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52615200/

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