# -*- coding: utf-8 -*-
"""
    podgen
    ~~~~~~

    Package which makes it easy to generate podcast RSS using Python.

    See the official documentation at https://podgen.readthedocs.org

    :copyright: 2016, Thorben Dahl <thorben@sjostrom.no>
    :license: FreeBSD and LGPL, see license.* for more details.
"""
# Support for Python 2.7
from __future__ import absolute_import, division, print_function, unicode_literals
from builtins import *

from .podcast import Podcast
from .episode import Episode
from .media import Media
from .person import Person
from .warnings import NotSupportedByItunesWarning, PodgenWarning, \
    LegacyCategoryWarning, NotRecommendedWarning
from .category import Category
from .util import htmlencode
