私はpythonを使用してwebscrapingのために別のIPアドレスで同じWebサイトを開く必要があります。私はwebscraping.Iについて詳細な知識を持っていない私は以下を試みたが、私に理解していない。これの詳細コードは何ですか?事前にどのように私はPythonで別のIPアドレスを使用して同じWebサイトを開くことができます
def connectToSiteFunction(ip):
# your code to bind ip (if it's a source) or connect to it (if it's a dst)
# and do your thing here
def connectAndWait():
for ip in ips:
t = threading.Thread(target=connectToSiteFunction, args=(ip,))
yield t
t.start()
os.sleep(15)
threads = [t for t in connectAndWait()]
for t in threads:
t.join()
おかげ