Python SDK

Python SDK reference

Installation

pip install missinglettr

Usage

from missinglettr import MissinglettrAPI

api = MissinglettrAPI("YOUR_API_KEY")

# List workspaces
workspaces = api.workspaces.list()

# Create a post
post = api.posts.create(
    workspace_id=1,
    text="Hello from Python!",
    platforms=["twitter", "linkedin"]
)