Skip to main content

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, you can use the one you like best. 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

  1. 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

pytorreq-0.2.3.tar.gz (3.2 kB view details)

Uploaded Source

Built Distribution

pytorreq-0.2.3-py3-none-any.whl (3.2 kB view details)

Uploaded Python 3

File details

Details for the file pytorreq-0.2.3.tar.gz.

File metadata

  • Download URL: pytorreq-0.2.3.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

Hashes for pytorreq-0.2.3.tar.gz
Algorithm Hash digest
SHA256 eddccdb6d70c5e83cf0e6cd57683fa21e48491bb67dbe6358c88925c8f0b14b5
MD5 bf069bee350fa0bb614782ea5b501e33
BLAKE2b-256 2401f204bd3172d5addb567f403b827c345a747782519cafd2a8308a6ba7d225

See more details on using hashes here.

File details

Details for the file pytorreq-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: pytorreq-0.2.3-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

Hashes for pytorreq-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b7638b72b07ff8545473268a4f92594f772b5ec40204efafa7ab857badb3574f
MD5 85befc168e886b561045433c44c368b2
BLAKE2b-256 9c9418400b77bc98c21151f74cf5d95222007bfde9fd7daabd5ebdbcd9a2e558

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page