Capture outgoing HTTP requests from your Python code and browse them in a local web dashboard.
Add import smello and smello.init() to your app. Every outgoing HTTP request shows up in the dashboard. No config files, no middleware.
Inspect method, URL, headers, body, status code, and duration for every captured call. Sensitive headers like Authorization are redacted automatically.
Smello patches both libraries automatically, including async httpx. Your existing code stays unchanged.
Add two lines, then open localhost:5110 to browse captured traffic.
import smello
smello.init()
# Every outgoing request is now captured
import requests
resp = requests.get("https://api.stripe.com/v1/charges")
import httpx
resp = httpx.get("https://api.openai.com/v1/models")
# Browse captured requests at http://localhost:5110