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.0.tar.gz
(7.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hideip-0.1.0.tar.gz.
File metadata
- Download URL: hideip-0.1.0.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 |
185a24462bd1e261e10e86f7abb2b82c6c951089ba17b846b39cd19e379d3ac3
|
|
| MD5 |
746232cac664b6884a68fbe7135a5e4b
|
|
| BLAKE2b-256 |
469e7ab7741610249b5f6ec2f5e21dc7d87bee0bbab88267ec12db2d45b32664
|
File details
Details for the file hideip-0.1.0-py2.py3-none-any.whl.
File metadata
- Download URL: hideip-0.1.0-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 |
4db5c179901b8e4aa3c48c751a6c95bd570f6c2e9a4ecf3197d11c6d875c0a53
|
|
| MD5 |
159b2a9ff6edfae8d58641ccd210e77f
|
|
| BLAKE2b-256 |
bc69b2c7652af7a35cf286fb899c519dafecd01560295f8c9703bb7b6ae98997
|