NewSee everything we shipped in Launch Week 3
All articles
ProductAugust 7, 2025· 5 min read

The Ferr Python SDK

The Pythonic way to launch and drive cloud browsers, with sync and async clients.

PN
Priya N.
Developer Relations

The Python SDK wraps the Sessions API in an interface that feels at home next to your model and data code. Both sync and async clients ship in the box.

A tiny example

app.py
from ferr import Ferr
 
ferr = Ferr()
with ferr.sessions.create(stealth=True) as session:
page = session.new_page()
page.goto('https://example.com')
print(page.title())
Build it on Ferr
Launch your first cloud browser for free.
Start For Free