torpy
torpy copied to clipboard
Pure python Tor client implementation
Why when I exceed near 3k requests, the IPs start duplicating and I dont get any new fresh IP? P.S: I am using `threading`
Is there any intent or possibility to port this project to micropython libs? The advantages of using micropython + torpy + IOT microcontroller devices could be tremendous. If is not...
Hi I keep getting a timeout errors trying to connect to anything other than 80. Is there a verbose setting I can switch on? keep getting a timeout error. TimeoutError:...
I want to create a sipder downloader Via the tor. I used the torpy ,It's more effective . But I can't visit FTP site.
Hi @jbrown299, I'm a big fan of your work! Torpy works perfectly fine with Python 3.8 and this error occurs when trying to serialize the TOR session, basically saving the...
code : ``` from torpy.http.requests import tor_requests_session with tor_requests_session(hops_count=2, retries=0) as session: session.get('http://google.com') ``` I wanna know the app request to http://google.com with which IP of tor, without any api...
I want to scrape a website asynchronously using a list of tor circuits with different exit nodes and making sure each exit node only makes a request every 5 seconds....
From the last commit date, and the errors and the not-supported Onion Services V3, is this project dead? If it is, are there any alternatives? It's a shame tbh, I...
This way, you don't need the context manager for tor_requests_session() anymore. Can now use like this: `s = tor_requests_session():` `res = s.get("https://google.com")`
Is there a way to send multiple requests in one session? and change the session after n requests Or each session can send only one request. ` with TorRequests() as...