본문 바로가기
Study/Python

Python Tor 사용하기 (darkweb_crawling Project)

by Becoming a Hacker 2021. 4. 26.
반응형

환경 셋팅

sudo apt-get install tor

sudo vi /etc/tor/torrc
SocksPort 9050 (# 제거)

sudo service tor restart

 

기본 코드

import requests

url = "http://myipaddress.com"
session = requests.session()

session.proxies = {
        "http":"socks5h://127.0.0.1:9050",
        "https":"socks5h://127.0.0.1:9050",
}

rep = session.get(url)

print(rep.text)

 

시간 남을 때마다 진행할 예정

 

min1233/darkweb_crawling

darkweb_crawling. Contribute to min1233/darkweb_crawling development by creating an account on GitHub.

github.com

 

'Study > Python' 카테고리의 다른 글

[Django] FileUpload 설정  (0) 2021.09.20
[Django] Debug=False 후 MEDIA, STATIC 경로 설정  (0) 2021.09.20
[Django] 실행을 위한 기본 명령어  (0) 2021.09.20
Python Offline Package Install  (0) 2020.09.21
Python Error 해결 방법  (0) 2020.09.21

댓글