https://github.com/germanmtzmx/proxynova_scraper
Get free proxies for your projects from proxynova.com
https://github.com/germanmtzmx/proxynova_scraper
proxies proxy-scraper proxynova python python3
Last synced: about 2 months ago
JSON representation
Get free proxies for your projects from proxynova.com
- Host: GitHub
- URL: https://github.com/germanmtzmx/proxynova_scraper
- Owner: GermanMtzmx
- License: mit
- Created: 2022-07-23T17:52:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-24T01:25:14.000Z (almost 4 years ago)
- Last Synced: 2025-09-30T21:33:44.452Z (8 months ago)
- Topics: proxies, proxy-scraper, proxynova, python, python3
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# proxynova_scraper
Get free proxies for your projects from [proxinova.com](https://proxinova.com)
## Getting started
**Installing the package**
```text
pip install proxynova-scraper
```
**Use**
You have two ways to get the proxies:
- Get the latest ones
- Get proxies by country
**Get the latest ones from different countries**
It will scrap the [main page](https://www.proxynova.com/proxy-server-list) from proxynova
```python
from proxynova_scraper import get_proxies
proxies = get_proxies()
```
**Get proxies by country**
It will scrap [proxynova by specifying the country](https://www.proxynova.com/proxy-server-list/country-mx) (2 char code), if the table from proxynova doesn't contain any proxy it will return an empty array
```python
from proxynova_scraper import get_proxies_by_country
mexico_proxies = get_proxies_by_country('mx')
```
**Proxy item**
This is an example of the content returned by `get_proxies` or `get_proxies_by_country`
```python
{
'proxyIp': '45.174.77.241',
'proxyPort': '999',
'lastCheck': '2022-07-23 22:32:03Z',
'proxySpeed': 2735,
'Uptime': '5114',
'proxyCountry': 'Mexico - Chihuahua City',
'anonymity': 'Transparent'
}
```