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.0rc1.tar.gz
(7.3 kB
view details)
Built Distribution
File details
Details for the file hideip-0.1.0rc1.tar.gz
.
File metadata
- Download URL: hideip-0.1.0rc1.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 | 6ad59e952459f488a6a271d97ef96313d8d6e1ea2c3ebfee41d8f56e8a269795 |
|
MD5 | c64533d1a9a71dd10935cf08ad74f277 |
|
BLAKE2b-256 | c1ea9dc6d3d5e476e50995a6d799271bd671a3d370cd7c139092338327457b00 |
File details
Details for the file hideip-0.1.0rc1-py2.py3-none-any.whl
.
File metadata
- Download URL: hideip-0.1.0rc1-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 | 96f939597808a069bc67d1e28b2f1401717804c55c3a13aba412fafaa4fae443 |
|
MD5 | 0e8573316caa3d3bdf276eb1a1eeef96 |
|
BLAKE2b-256 | 7a5b505945ca53c27b59ce1fdbe6a80e7b6938f6c357f4db07bf6bdec43828ae |