Skip to main content

Genode Free Proxies API Wrapper

· One min read
Hirusha Adikari
Student interested in Tech

The Genode Free Proxies API Wrapper is a Python library designed to fetch free proxy lists from Geonode's public API. It provides a simple interface to retrieve and utilize proxies for web scraping, testing, and anonymizing requests. By automating the process of gathering proxies, this wrapper eliminates the need for manual scraping, making it easier to integrate proxies into your applications.

API wrapper for https://geonode.com/free-proxy-list

Gitub repo: @hirusha-adi/Geonode-Free-Proxies-API-Wrapper

This tool will help you to scrape free proxies from geonode, quickly and easily!

Usage

Use the wrapper in your Python script:

import geonode

# Initialize the Proxylist object
prox = geonode.Proxylist()

# Get a list of proxies
proxies = prox.get_proxies_only()

# Print the obtained proxies
for proxy in proxies:
print(proxy)

Ensure that you have an active internet connection while using this wrapper, as it fetches data from an online API.