IP | Country | PORT | ADDED |
---|---|---|---|
98.175.31.195 | us | 4145 | 12 minutes ago |
72.195.34.42 | us | 4145 | 12 minutes ago |
72.205.0.93 | us | 4145 | 12 minutes ago |
83.1.176.118 | pl | 80 | 12 minutes ago |
203.19.38.114 | cn | 1080 | 12 minutes ago |
194.219.134.234 | gr | 80 | 12 minutes ago |
203.99.240.179 | jp | 80 | 12 minutes ago |
128.140.113.110 | de | 4145 | 12 minutes ago |
119.3.113.150 | cn | 9094 | 12 minutes ago |
46.105.105.223 | gb | 4498 | 12 minutes ago |
62.99.138.162 | at | 80 | 12 minutes ago |
72.195.34.59 | us | 4145 | 12 minutes ago |
67.201.33.10 | us | 25283 | 12 minutes ago |
49.207.36.81 | in | 80 | 12 minutes ago |
83.168.75.202 | pl | 8081 | 12 minutes ago |
50.55.52.50 | us | 80 | 12 minutes ago |
217.218.242.75 | ir | 5678 | 12 minutes ago |
91.241.217.58 | ua | 9090 | 12 minutes ago |
122.116.29.68 | 4145 | 12 minutes ago | |
221.231.13.198 | cn | 1080 | 12 minutes ago |
Our proxies work perfectly with all popular tools for web scraping, automation, and anti-detect browsers. Load your proxies into your favorite software or use them in your scripts in just seconds:
Connection formats you know and trust: IP:port or IP:port@login:password.
Any programming language: Python, JavaScript, PHP, Java, and more.
Top automation and scraping tools: Scrapy, Selenium, Puppeteer, ZennoPoster, BAS, and many others.
Anti-detect browsers: Multilogin, GoLogin, Dolphin, AdsPower, and other popular solutions.
Looking for full automation and proxy management?
Take advantage of our user-friendly PapaProxy API: purchase proxies, renew plans, update IP lists, manage IP bindings, and export ready-to-use lists — all in just a few clicks, no hassle.
PapaProxy offers the simplicity and flexibility that both beginners and experienced developers will appreciate.
And 500+ more tools and coding languages to explore
To find out the port of the proxy server, you just need to use any browser (Yandex Browser, Opera, Google Chrome). Then you need to follow the algorithm:
Start the browser. Go to "Settings". In the search box enter the query "proxy". Click on "Proxy settings". In the window that opens, select "Network settings". This will open a tab with the IP address and port of the proxy server.
You can use Selenium WebDriver to find out the URL of the active tab in the browser. Here's an example using Python with Selenium:
from selenium import webdriver
# Create a WebDriver instance (assuming Chrome in this example)
driver = webdriver.Chrome()
try:
# Navigate to a website
driver.get("https://www.example.com")
# Get the URL of the active tab
current_url = driver.current_url
print("URL of the active tab:", current_url)
# Perform other actions as needed
finally:
# Close the browser window
driver.quit()
In this example:
driver.get("https://www.example.com")
navigates to a specific website.driver.current_url
retrieves the URL of the currently active tab.Make sure to replace "https://www.example.com"
with the actual URL you want to navigate to.
Keep in mind that this method retrieves the URL of the currently active tab. If you have multiple tabs open and you want to switch between them, you can use the driver.window_handles
method to get a list of window handles and then switch to the desired window. For example:
# Open a new tab or window
driver.execute_script("window.open('about:blank', '_blank');")
# Switch to the newly opened tab
driver.switch_to.window(driver.window_handles[1])
# Get the URL of the active tab
new_tab_url = driver.current_url
print("URL of the new tab:", new_tab_url)
This code opens a new tab, switches to it, and then retrieves the URL of the new tab.
If you can't proxy requests in Scrapy:
- Verify correct proxy configuration in Scrapy settings.
- Confirm proxy functionality with external tools.
- Check for typos or errors in your code and settings.
- Ensure proxy authentication details are correct.
- Test with a direct internet connection to isolate the issue.
- Check for IP blocking by the target website.
- Confirm proper configuration of the HttpProxyMiddleware.
- Use Scrapy logging to inspect requests and responses.
- Ensure your proxy supports HTTPS if needed.
- Test with a single, static proxy for simplicity.
- Keep Scrapy and dependencies up to date.
- Consider using middleware libraries like scrapy-rotating-proxies.
Open the "Browser Properties" in the control panel, in the "Connections" section of the opened window select "Network Settings". Remove the check mark from the "Use proxy" item, click "OK".
There are HTTP proxy, FTP proxy, SOCKS proxy, SMTP proxy, CGI proxy. They differ only in the data transmission protocol used and the purpose for which they are used. For example, SMTP proxy allows you to organize a secure server for e-mail.
What else…