/
/
/
1"""Constants for Podcast Index provider."""
2
3# Configuration keys
4CONF_API_KEY = "api_key"
5CONF_API_SECRET = "api_secret"
6CONF_STORED_PODCASTS = "stored_podcasts"
7
8# API settings
9API_BASE_URL = "https://api.podcastindex.org/api/1.0"
10
11# Browse categories
12BROWSE_TRENDING = "trending"
13BROWSE_RECENT = "recent"
14BROWSE_CATEGORIES = "categories"
15