A simple python library that allows you to forward requests through the tor network
Project description
pytorreq
A simple library that allows you to run your requests through the tor network
Basic usage:
from pytorreq import PyTorReq
# If you want to use the library on windows, you need to explicitly specify where tor.exe is located.
# Or specify in the system PATH.
torPath = 'tor.exe'
treq = PyTorReq(torPath=torPath)
# If on Linux, then you can not enter anything.
treq = PyTorReq()
# It launch new tor session.
treq.launchTorSession()
response = treq.get('http://ipecho.net/plain')
# Is your new tor ip.
print(response.text)
Installation
pip istall pytorreq
Dependencies
You need tor. On windows you can download tor browser, and somewhere inside the tor browser folder you will need to find tor.exe.
Everything is simpler on Linux, I think that linux users do not need to be told what they need to do) like apt\dnf bla bla bla...
Note
By default, tor session is generated during class initialization. To get a session object, you can directly refer to it.
treq = PyTorReq(torPath=torPath)
tses = treq.session
<requests.sessions.Session object at 0x000001FAF5D77B80>
The library has one method of resetting personality. After applying this method you will receive a new identity tor and a new ip address.
treq.getNewTorIdentity()
There is a wrapper around all the required request methods. Just use them as you would with the good old requests module:
# GET
treq.get()
# POST
treq.post()
# PUT
treq.put()
# PATCH
treq.patch()
# DELETE
treq.delete()
There are also methods for working with cookies. You can safely transfer regular cookies from requests there.
# CookieJar obj
treq.getCookieObj()
# CookiesDict
treq.getCookieDict()
# If you need, you can very simply add a new cookie to the current tor session. Accepts a cookie obj
treq.updateTorSessionCookie(cookie)
You can get your tor ip via the following method:
# it will return string with your ip adr
treq.getMyIp()
Close method.
# It will close the session.
treq.close()
todos
- async get/post links.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytorreq-0.2.5.tar.gz
.
File metadata
- Download URL: pytorreq-0.2.5.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.2.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b983360baabcc89eaeaf48cd25d320afc91f202eda7cbba40d4cced59991d015 |
|
MD5 | a4cd026bf3b0fdc4a8a9ed6e9dd85a31 |
|
BLAKE2b-256 | 47d6b9b9f4e2429aeb7b847a7f4989666c3691a9bee03f8fffed9b06fd04939d |
File details
Details for the file pytorreq-0.2.5-py3-none-any.whl
.
File metadata
- Download URL: pytorreq-0.2.5-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.2.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d62d1d0db26ea43841e19b7eb72265283a6ac0855f4e68499d1e8fa0f47ba7f |
|
MD5 | a042870ac0f8bbda560ed8769cc4737d |
|
BLAKE2b-256 | da85154404402b50c16c01a0e984b7b1ff629343146c21093ffaff558312c7c6 |