Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.01 KB

File metadata and controls

25 lines (18 loc) · 1.01 KB

Usage Guide

Welcome to the Pocket Casts Python Client! This guide provides a quick start and navigation to detailed usage for each API area.

Quick Start

import os
from api_pocketcasts.client import PocketCastsClient

client = PocketCastsClient()
user = client.login_pocket_casts(os.environ["POCKETCASTS_EMAIL"], os.environ["POCKETCASTS_PASSWORD"])
print(f"Logged in as: {user.email}, token: {user.access_token}")

Documentation Sections

See each section for detailed examples and error handling for that area.