Geo-target proxies with Evomi
mainWhen configuring Evomi proxies, you can specify geographic locations to target specific traffic origins.
- Continent: Use names like
Africa,Asia,Europe,Oceania,North America, orSouth America. - Country: Use two-letter country codes (e.g.,
country='US'for United States,country='CA'for Canada). - Region: Target a specific state, province, or territory. Available for Residential and Mobile proxies.
- City: Target a specific city. Available for Residential proxies only.
from hrequests.proxies import evomi
# Target a specific city in North America
proxy = evomi.ResidentialProxy(continent='North America', city='New York', username='...', key='...')
# Target a specific region with Mobile proxies
mobile_proxy = evomi.MobileProxy(region='Southern Cape', username='...', key='...')