Skip to content

Commit

Permalink
bump version. merged constverum#121
Browse files Browse the repository at this point in the history
  • Loading branch information
bluet committed May 2, 2020
1 parent 0bed8af commit 667b6ce
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion proxybroker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__title__ = 'ProxyBroker'
__package__ = 'proxybroker'
__version__ = '0.3.2'
__version__ = '0.4.0'
__short_description__ = '[Finder/Checker/Server] Finds public proxies from multiple sources and concurrently checks them. Supports HTTP(S) and SOCKS4/5.' # noqa
__author__ = 'Constverum'
__author_email__ = 'constverum@gmail.com'
Expand Down
12 changes: 12 additions & 0 deletions proxybroker/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,18 @@ def __init__(self, *args, **kwargs):
url='http://www.proxylists.net/',
proto=('HTTP', 'CONNECT:80', 'HTTPS', 'CONNECT:25'),
), # 49
Provider(
url='https://api.proxyscrape.com/?request=getproxies&proxytype=http',
proto=('HTTP', 'CONNECT:80', 'HTTPS', 'CONNECT:25'),
), # added by ZerGo0
Provider(
url='https://api.proxyscrape.com/?request=getproxies&proxytype=socks4',
proto=('SOCKS4'),
), # added by ZerGo0
Provider(
url='https://api.proxyscrape.com/?request=getproxies&proxytype=socks5',
proto=('SOCKS5'),
), # added by ZerGo0
Provider(
url='http://ipaddress.com/proxy-list/',
proto=('HTTP', 'CONNECT:80', 'HTTPS', 'CONNECT:25'),
Expand Down

0 comments on commit 667b6ce

Please sign in to comment.