torpy
torpy copied to clipboard
multi request by one session
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 tor_requests:
with tor_requests.get_session() as session:
page = session.get(url)
`