Skip to content

Update __init__.py #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 3 additions & 17 deletions fetchers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,19 @@
Fetcher = namedtuple('Fetcher', ['name', 'fetcher'])

from .UUFetcher import UUFetcher
from .KuaidailiFetcher import KuaidailiFetcher
from .GoubanjiaFetcher import GoubanjiaFetcher
from .IP66Fetcher import IP66Fetcher
from .IP3366Fetcher import IP3366Fetcher
from .JiangxianliFetcher import JiangxianliFetcher
from .IHuanFetcher import IHuanFetcher
from .IP89Fetcher import IP89Fetcher
from .ProxyscanFetcher import ProxyscanFetcher
from .KaiXinFetcher import KaiXinFetcher
from .XiLaFetcher import XiLaFetcher
from .XiaoShuFetcher import XiaoShuFetcher
from .ProxyListFetcher import ProxyListFetcher
from .ProxyScrapeFetcher import ProxyScrapeFetcher



fetchers = [
Fetcher(name='uu-proxy.com', fetcher=UUFetcher),
Fetcher(name='www.kuaidaili.com', fetcher=KuaidailiFetcher),
Fetcher(name='www.goubanjia.com', fetcher=GoubanjiaFetcher),
Fetcher(name='www.66ip.cn', fetcher=IP66Fetcher),
Fetcher(name='www.ip3366.net', fetcher=IP3366Fetcher),
Fetcher(name='ip.jiangxianli.com', fetcher=JiangxianliFetcher),
Fetcher(name='ip.ihuan.me', fetcher=IHuanFetcher),
Fetcher(name='www.proxyscan.io', fetcher=ProxyscanFetcher),
Fetcher(name='www.89ip.cn', fetcher=IP89Fetcher),
Fetcher(name='www.kxdaili.com', fetcher=KaiXinFetcher),
Fetcher(name='www.xiladaili.com', fetcher=XiLaFetcher),
Fetcher(name='www.xsdaili.cn', fetcher=XiaoShuFetcher),
Fetcher(name='www.proxy-list.download', fetcher=ProxyListFetcher),
Fetcher(name='proxyscrape.com', fetcher=ProxyScrapeFetcher)
Fetcher(name='www.xsdaili.cn', fetcher=XiaoShuFetcher)
]