Open tobinus opened 4 years ago
Currently, you can generate the RSS by converting the Podcast to RSS:
print(str(p))
However, this introduces a couple issues:
str()
For version 1.2.0, using str() to generate the RSS should yield DeprecationWarning.
For version 2.0.0, you can only use rss_str() to generate the RSS as string.
rss_str()
Currently, you can generate the RSS by converting the Podcast to RSS:
However, this introduces a couple issues:
str()
should not be a costly operation.For version 1.2.0, using
str()
to generate the RSS should yield DeprecationWarning.For version 2.0.0, you can only use
rss_str()
to generate the RSS as string.