Podcasts

Podcast Models

SQLAlchemy ORM definitions for:

Mapped Classes

class mediacore.model.podcasts.Podcast

Podcast Metadata

author

An instance of mediacore.model.authors.Author. Although not actually a relation, it is implemented as if it were. This was decision was made to make it easier to integrate with mediacore.model.auth.User down the road.

category

The iTunes category

Values with a > are parsed with special meaning. Arts > Design implies that this pertains to the Design subcategory of Arts, and the feed markup reflects that.

created_on

The date and time this player was first created.

explicit

The iTunes explicit value.

  • True means ‘yes’
  • None means no advisory displays, ie. ‘no’
  • False means ‘clean’
feedburner_url

Optional Feedburner URL.

If set, requests for this podcast’s feed will be forwarded to this address – unless, of course, the request is coming from Feedburner.

id

The primary key ID.

itunes_url

Optional iTunes subscribe URL.

media

A query pre-filtered to media published under this podcast. Returns mediacore.model.media.MediaQuery.

media_count

The total number of mediacore.model.media.Media episodes.

media_count_published

The number of mediacore.model.media.Media episodes that are currently published.

modified_on

The date and time this player was last modified.

slug

A unique URL-friendly permalink string for looking up this object.

Be sure to call mediacore.model.get_available_slug() to ensure the slug is unique.

title

Display title.

Helpers

Er, none here. TODO: finish this page.

Table Of Contents

Current topic


Previous topic

Media


Next topic

Comments


This Page