evokelektrique / night-vision

Retrieve fresh proxies using PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Night Vision

NightVision

(Under development)



List of supported services or APIs with their examples:

ProxyScrape

Scrape websites without limits

// Fetching HTTP proxies
$options = [
   "timeout" => 1000,
   "protocol" => "http",
   "country" => "all",
   "ssl" => "all",
   "anonymity" => "all"
];

$endpoint = new ProxyScrape($options);
$list = $endpoint->get();
// Array
// (
//    [0] => 112.6.117.178:8085
//    [1] => 176.9.63.62:3128
//    [2] => 185.61.152.137:8080
//    [3] => 213.230.69.193:3128
//    [4] => 92.204.251.199:1080
//    ...
// )

Why?

Well this repo is the re implementation of my personal PHP class that I used to scrape various websites, because they didn't provide a valid and updated APIs for their services and the only option to get data from those services was to get it done via scraping the pages and to bypass the limits I had to use proxies, NightVision provides free and new proxy lists from many sources.

The reason I named this library NightVision is because for decades, the U.S. military has prided itself on "owning the night" thanks to its unmatched night-vision technology.

image Source

About

Retrieve fresh proxies using PHP


Languages

Language:PHP 100.0%