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. 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.6.tar.gz (3.2 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: pytorreq-0.2.6.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.6.tar.gz
Algorithm Hash digest
SHA256 bea3b2d56896c12690d4fc0c0d2357f15f0d7fdf933a233afca5e0205b4c6681
MD5 571d29e6e0eee48c5c6b9ed6e93f250d
BLAKE2b-256 21d9476e5bebd1434cf6eb1711623ee9d1cfeb2c15cec136eee661d97de841c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytorreq-0.2.6-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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 42866c430565e5ac8fdeedade8d042016fb7a786b568f947040089bd288346f1
MD5 a02415d9572c44017487d84a770e838d
BLAKE2b-256 7327570aba8012e3d5583622af1710e2d3202f6d024252c941e8edf453303ed1

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