The Proxer class provides methods to retrieve, validate, and save proxies.
- Huge proxy database
- Parsing of new available proxies (with uniqueization function)
- You can use your own proxy database
- Cleaning of database, working proxies, and general proxy list
- Checking proxies for performance, using popular sites giants for verification
git clone https://github.com/ssshipilo/Proxer
pip install -r requirements.txt
pip install Proxer
Import the library into your project, and initialize the Proxer class, sample code to get 1 working proxies
from Proxer import Proxer
import os
proxy = Proxer(file_path_output=os.path.join(os.getcwd(), "output.txt"), file_path_save=os.path.join(os.getcwd(), "save.txt"))
result = proxy.update_db_proxy() # Update or add files with database where you can mix proxy servers database
result = proxy.get(1) # Get the number of references, the answer in an array
print(result)A huge database of proxy servers can be found here
- DONE. Create a library to get a working proxy
- DONE. Put it on PyPI
- Find a specialist in multithreading to speed up the work of the code
- Add new providers for scraping available proxies
- Create a service so that ordinary users can use available proxies


