Skip to content

Commit

Permalink
added free ProxyScrape Proxies.
Browse files Browse the repository at this point in the history
  • Loading branch information
narkhedesam committed Aug 23, 2020
1 parent b0b5eee commit 351e8dd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Proxy_List_Scrapper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def __init__(self, category='ssl', print_err_trace=True):
'US': 'https://www.us-proxy.org/',
'NEW': 'https://free-proxy-list.net/',
'SPYS.ME': 'http://spys.me/proxy.txt',
'proxyscrape': 'https://api.proxyscrape.com/?request=getproxies&proxytype=all&country=all&ssl=all&anonymity=all',
'ALL': 'ALL'
}
self.print_trace = print_err_trace
Expand Down Expand Up @@ -97,7 +98,7 @@ def _get(self):
"""
try:
r = requests.get(url=self.Categories[self.category])
if self.category == 'SPYS.ME':
if self.category == 'SPYS.ME' or self.category == 'proxyscrape':
self.proxies = findall(pattern=r'\d+\.\d+\.\d+\.\d+:\d+', string=r.text)
else:
matches = findall(pattern=r'\d+\.\d+\.\d+\.\d+</td><td>\d+', string=r.text)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Here Your need to specify category defined as below:<br/>
'US': 'https://www.us-proxy.org/',
'NEW': 'https://free-proxy-list.net/',
'SPYS.ME': 'http://spys.me/proxy.txt',
'proxyscrape': 'https://api.proxyscrape.com/?request=getproxies&proxytype=all&country=all&ssl=all&anonymity=all',
'ALL': 'ALL'

These are all categories.<br/>
Expand Down Expand Up @@ -70,16 +71,15 @@ Sameer Narkhede <br/>
Profile : https://github.com/narkhedesam <br/>
Website : https://narkhedesam.github.io/

### Thanks for giving free proxies we all are thankful


### Thanks for giving free proxies
- https://www.sslproxies.org/
- https://www.google-proxy.net/
- https://free-proxy-list.net/anonymous-proxy.html
- https://free-proxy-list.net/uk-proxy.html
- https://www.us-proxy.org/
- https://free-proxy-list.net/
- http://spys.me/proxy.txt
- https://proxyscrape.com/
<br/><br/>


Expand Down
Binary file added dist/Proxy-List-Scrapper-0.1.5.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='Proxy-List-Scrapper',
version='0.1.4',
version='0.1.5',
packages=find_packages(),
url='',
license='MIT License',
Expand Down

1 comment on commit 351e8dd

@NaungNaung342
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dist/Proxy-List-Scrapper-0.1.5.tar.gz

Please sign in to comment.