Skip to content

flowfull-python ​

Official Python client for Flowfull backends.

Why use it ​

  • Sync and async clients for different runtime styles
  • Built-in authentication and session management
  • Query builder with filter operators
  • Production features: retries, interceptors, typed responses

Install ​

bash
pip install flowfull-python

Quick start ​

python
from core import FlowfullClient

client = FlowfullClient("https://api.example.com")
response = client.get("/users")
print(response.data)