tobinus / python-podgen

Generating podcasts with Python should be easy!
https://podgen.readthedocs.org
Other
51 stars 10 forks source link

Decide on an API for specifying seasons #71

Closed tobinus closed 4 years ago

tobinus commented 4 years ago

Apple Podcasts have added support for specifying a season per episode.

Possible ways of letting users specify the season:

  1. attribute of Episode
  2. dictionary where key specifies season number, and value is list of episodes for that season
  3. primarily 1., but with utility function accepting form 2
tobinus commented 4 years ago

I think most people who use PodGen retrieve the original data in a tabular format, without grouping by season. In that case, it would be much easier to set the season number as an attribute. I have described an implementation like that in #102 .