All Projects → iterweb → proxy_checker

iterweb / proxy_checker

Licence: MIT license
A checker designed in Python 3 for checking proxy.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to proxy checker

proxy-checker
The simple script, which checks good and bad proxies
Stars: ✭ 42 (+13.51%)
Mutual labels:  checker, proxy-checker
ProxyChecker
proxy checker to check the status of the ip-port proxy list
Stars: ✭ 24 (-35.14%)
Mutual labels:  checker, proxy-checker
cscanner
An open source, multi-cloud DevSecOps compliance checker
Stars: ✭ 19 (-48.65%)
Mutual labels:  checker
denetmen
useful micro check library for Crystal Language.
Stars: ✭ 23 (-37.84%)
Mutual labels:  checker
crowntool
Multi Tool with many functions coming
Stars: ✭ 55 (+48.65%)
Mutual labels:  checker
util
封装了一些Java常用的功能
Stars: ✭ 19 (-48.65%)
Mutual labels:  checker
deps-ok
Fast checking of top level dependencies based on version numbers
Stars: ✭ 17 (-54.05%)
Mutual labels:  checker
codeowners-validator
The GitHub CODEOWNERS file validator
Stars: ✭ 142 (+283.78%)
Mutual labels:  checker
vim-mypy
Vim plugin for executing Python's optional static type checker MyPy (http://mypy-lang.org/)
Stars: ✭ 89 (+140.54%)
Mutual labels:  checker
validate-chain
前后端共用的表单验证链,以及中文的验证错误反馈信息
Stars: ✭ 26 (-29.73%)
Mutual labels:  checker
pronto-credo
pronto runner for credo, a code analysis tool for Elixir programming language
Stars: ✭ 12 (-67.57%)
Mutual labels:  checker
torchestrator
Spin up Tor containers and then proxy HTTP requests via these Tor instances
Stars: ✭ 32 (-13.51%)
Mutual labels:  proxy-checker
proxy fetcher
💪 Ruby / JRuby / TrufflleRuby gem & CLI for dealing with proxy lists from various sources
Stars: ✭ 119 (+221.62%)
Mutual labels:  proxy-checker
portakal
Bulk port checker written with Go
Stars: ✭ 18 (-51.35%)
Mutual labels:  checker
docheader
A small tool to check license headers
Stars: ✭ 65 (+75.68%)
Mutual labels:  checker
Live-cc-checker
This script will check live cc and Grab proxy and check proxy if its working or not
Stars: ✭ 37 (+0%)
Mutual labels:  proxy-checker
BitGen
Bitcoin wallet generator and scrapper
Stars: ✭ 87 (+135.14%)
Mutual labels:  checker
proxyhunter
ProxyHunter v1 - Searches IP ranges for SOCKS and SQUID proxy servers
Stars: ✭ 27 (-27.03%)
Mutual labels:  proxy-checker
Hacking-tools
INSTAGRAM DM BOT | MULTI-THREADING REQUESTS BASED | PROXY SUPPORT
Stars: ✭ 35 (-5.41%)
Mutual labels:  proxy-checker
MailRipV3
SMTP and IMAP checker / cracker for mailpass combolists with a user-friendly GUI, automated inbox test and many more features.
Stars: ✭ 28 (-24.32%)
Mutual labels:  checker

Proxy Checker

Downloads
A checker designed in Python 3.7 for checking proxy.
If you need proxies, you can use this script Proxy Grabber

Description

This script takes a proxy as string input and tries to get data such as:

  • type (HTTP, SOCKS4, SOCKS5)
  • time response (in seconds)
  • anonymity (Anonymous or Transparent)
  • country
  • city
  • country code

Installation

pip install proxy-checking

Usage

from proxy_checking import ProxyChecker

checker = ProxyChecker()
r = checker.check_proxy('<ip>:<port>')
print(r)

if proxy is valid, will be return dictionary

{
  "status": True,
  "type": ["socks4", "socks5"],
  "time_response": "0.545",
  "anonymity": "Anonymous",
  "country": "Germany",
  "city": "Falkenstein",
  "country_code": "DE"
}

if proxy is not valid

{
  "status": False
}

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].