Python
1import requests 2from bs4 import BeautifulSoup 3 4url = 'https://www.ugtop.com/spill.shtml' 5 6proxies = { 7 'http': 'http://username;password@IPアドレスホスト部:ポート番号', 8 'https': 'https://username;password@IPアドレスホスト部:ポート番号', 9} 10request = requests.session() 11html = request.get(url, proxies=proxies) 12soup = BeautifulSoup(html.content, 'html.parser') 13tr = soup.find_all('tr') 14 15print(tr) 16コード
pythonでプロクシサーバーを使いスクレイピングをしたいと思っています
そして、手始めに「確認くん」というクライアントのIPアドレスがわかるサイトで確認したのですが、IPアドレスが変更されません
おそらくパラメーターの記述が間違っているのでしょうが、どのように記述すればよいかわかりません
ご存じの方回答おねがいします
あなたの回答
tips
プレビュー