feeds
backend.api.feeds
Section titled “backend.api.feeds”RSS feed generation for artist, album, and playlist collections.
Functions
Section titled “Functions”artist_feed source
Section titled “artist_feed source”artist_feed(handle: str, db: Annotated[AsyncSession, Depends(get_db)]) -> ResponseRSS feed of all public tracks by an artist, newest first.
album_feed source
Section titled “album_feed source”album_feed(handle: str, slug: str, db: Annotated[AsyncSession, Depends(get_db)]) -> ResponseRSS feed of tracks in an album.
playlist_feed source
Section titled “playlist_feed source”playlist_feed(playlist_id: str, db: Annotated[AsyncSession, Depends(get_db)]) -> ResponseRSS feed of tracks in a playlist.