Getting Started

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.

Install via pip

pip install mx-requests

Basic Usage

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)