Hide your IP from the Internet
Project description
Installation
Windows
python -m pip install hideip
macOS
sudo pip install hideip
Linux
pip install hideip
Major Features
- Open file SOCKS5 proxy
- Get the avaiable proxy in the file
- Torrent the proxy
How to use?
First of all, we need the file SOCKS5 download it from HideMe
from hideip import HideMe
# The path file socks5.csv
file = 'socks5.csv'
hide = HideMe(file)
# Get the avaiable proxy
proxy = hide.torrent()
# Print
print(proxy)
Use with requests library
The socks5 maybe not support verify
, therefore we need to set it False
. We might want to turn off the InsecureRequest warning.
import requests
from hideip import HideMe
# Turn off warning, please ignore if you don't want
from urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
# Get the proxy
file = 'socks5.csv'
hide = HideMe(file)
hideme = hide.torrent()
# Requests
res = requests.get('https://httpbin.org/ip',proxies = hideme, verify = False, timeout = 2)
print(res.text)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hideip-0.1.0rc0.tar.gz
(7.3 kB
view details)
Built Distribution
File details
Details for the file hideip-0.1.0rc0.tar.gz
.
File metadata
- Download URL: hideip-0.1.0rc0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10b55d08a9f80f5da6e47a9209dbd51e35578eccd0f8edc2a4800235d74730c7 |
|
MD5 | c7647ebf3c9cb63b216ab5355a509db6 |
|
BLAKE2b-256 | 229d561a895c8974faae470c3567372b025eb3b23e2b009ca1dc1919604e204a |
File details
Details for the file hideip-0.1.0rc0-py2.py3-none-any.whl
.
File metadata
- Download URL: hideip-0.1.0rc0-py2.py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bfc27c7f87b680994bb143c03b41f5ca9784aa5dfae0e911070fcb2fbd29273 |
|
MD5 | da51c5767210c5a5bb0aefd4db2e08a2 |
|
BLAKE2b-256 | 00558e55c2b36526c60e98e42846e9439ac6a83921ca5bfb417cae2c82497493 |