Welcome to the Python Proxy Tutorial series! In this guide, we'll cover how to install and initialize the MontgomeryNX proxy client in your Python project.
pip install mx-requests
Replace your normal requests.get
call with the proxied URL:
import requests
API_KEY = "YOUR_API_KEY"
BASE = f"https://proxy.montgomerynx.com/{API_KEY}"
response = requests.get(f"{BASE}/http://example.com/data")
print(response.text)