コードに数行追加しましたが、唯一の問題はUIバージョン(ページソースを確認)がIPアドレスとして追加されていることです。
import urllib.request
import re
sourcecode = urllib.request.urlopen("https://www.inforge.net/xi/threads/dichvusocks-us-15h10-pm-update-24-24-good-socks.455588/")
sourcecode = str(sourcecode.read())
out_file = open("proxy.txt","w")
out_file.write(sourcecode)
out_file.close()
with open('proxy.txt') as fp:
for line in fp:
ip = re.findall('(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})', line)
for addr in ip:
print(addr)
UPDATE: これはあなたが探しているもので、BeatifulSoupは、我々はしかし、それはピップでインストールする必要があり、CSSクラスを使用してページから必要なデータのみを抽出することができます。ページをファイルに保存する必要はありません。
from bs4 import BeautifulSoup
import urllib.request
import re
url = urllib.request.urlopen('https://www.inforge.net/xi/threads/dichvusocks-us-15h10-pm-update-24-24-good-socks.455588/').read()
soup = BeautifulSoup(url, "html.parser")
# Searching the CSS class name
msg_content = soup.find_all("div", class_="messageContent")
ips = re.findall('(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})', str(msg_content))
for addr in ips:
print(addr)
ありがとうございます!それは始まりのポイントです!しかし、HTMLページ(この場合は
)の一部に集中することが可能なので、スクリプトはipsだけを出力できますか?とにかくもう一度お返事します – Sperly1987私は愚かです.. "ip"はリストなので、内部のアイテムを削除することができます。 – Sperly1987