module ProxyList

encoding : utf-8

encoding : utf-8

encoding : utf-8

encoding : utf-8

Constants

USER_AGENTS
VERSION

Public Class Methods

get_lists(country_code='US') click to toggle source

get proxy lists @params [String] country_code ISO two byte code

# File lib/proxy_list.rb, line 26
def self.get_lists(country_code='US')
   proxy_lists = ProxyList::SiteFreeproxylists.new(country_code).proxy_lists
   proxy_lists.concat(ProxyList::SiteSpys.new(country_code).proxy_lists)
   proxy_lists.concat(ProxyList::SiteCybersyndrome.new(country_code).proxy_lists)
   proxy_lists.uniq
end