Home Python Crawling - Proxy 사용하기
Post
Cancel

Python Crawling - Proxy 사용하기

requests에서 proxy 사용하기

1
2
3
4
5
import requests
proxies = {'http':'http://' + proxy_ip,
		  'https':'https://' + proxy_ip}

requests.get('url', headers=headers, params=params, verify=False, proxies=proxies)

IP를 주기적으로 바꿔야한다면 무료 프록시 목록을 미리 받아놓는 것이 좋다.

This post is licensed under CC BY 4.0 by the author.