bunkerweb/jobs/Proxies.py
2021-07-20 11:41:31 +02:00

12 lines
373 B
Python

from Job import Job
class Proxies(Job) :
def __init__(self, redis_host=None) :
name = "proxies"
data = ["https://iplists.firehol.org/files/firehol_proxies.netset"]
filename = "proxies.list"
type = "line"
regex = r"^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/?[0-9]*$"
super().__init__(name, data, filename, redis_host=redis_host, type=type, regex=regex)