Last updated:
0 purchases
pyarti 0.0.2
pyarti
It is a Python module to allow creating of SOCKS5 proxy using Arti project from the Tor Project.
By default it runs the proxy at port 9150 on localhost.
How to build?
First install Rustup toolchain for your user.
Build dependencies in Fedora
sudo dnf install python3-devel openssl-devel
Build dependencies in Debian Bullseye
sudo apt install -y python3-dev python3-pip python3-venv
Then create a virtual environment and follow along.
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r requirements-dev.txt
python setup.py develop
For a release build use the following command.
python setup.py bdist_wheel
How to use?
```
proxy = OnionProxy()
assert proxy.verify(blocking=True)
```
Read the [documentation](https://pyarti.readthedocs.io/en/latest/) for detailed API usage and examples.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.