flag-checkeredGetting Started

Meemo SDK

A Python SDK for interacting with the Meemo External API, providing access to meeting data including details, transcripts, summaries, participants, and recordings.

Getting Started

Hello World:

from meemo_sdk import MeemoClient

client = MeemoClient(
    client_id="your-client-id",
    client_secret="your-client-secret",
    base_url="https://your-meemo-instance.com",
)

meetings = client.meetings.list_meetings()
for meeting in meetings.results:
    print(f"{meeting.id}: {meeting.title} ({meeting.status})")

For configuration, authentication, full Meetings API, and error handling, see Cookbookarrow-up-right.

Last updated

Was this helpful?